I've got a program that generates a crazy amount of data and I'm really only interested in seeing the stdout it generates. Rather than running the program, filling up my disk, then deleting the unwanted files every time, is there a way I could just redirect all that file I/O to /dev/null in the same way I can redirect stdout to /dev/null?
Asked
Active
Viewed 181 times
0
/dev/null
? You'll still have a lot of filenames but the data use is minimal. – doneal24 Nov 05 '21 at 17:31