Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to suppress windows command output?

I'm moving thousands of files through the command line and it prints all the file names to the console. Is there a way to ignore the output so it can go faster? Something like piping to /dev/null in Linux.

Thanks

like image 492
John K Avatar asked Dec 15 '22 21:12

John K


2 Answers

bla-bla-bla-bla-bla-bla-bla-bla 2> nul
like image 75
Serj-Tm Avatar answered Dec 28 '22 21:12

Serj-Tm


I had the same problem, and I solved like this:

move aaa bbb >nul 2>nul
like image 45
Renk Software Avatar answered Dec 28 '22 23:12

Renk Software