1.

Solve : Redirect the output of command line into trsh.?

Answer»

I want to redirect the output of call command into trash i dont want to make any file and write output in that .

Can anyone help me .
thanks for any help.What you call "trash" is called "the null device", and in code is written as NUL or nul.

call whatever>nulYou can redirect to NUL.
Code: [Select]call whatever >NULwill redirect everything on STDIO to NUL which does not go ANYWHERE, like /dev/null OK thanks

it WORKS



Discussion

No Comment Found