⭐ in reply to how do i redirect STDOUT, STDIN, or STDERR to a FILE?
This would take STDIN from infile and put STDOUT to outfile. The sh type shells and csh type shells have different ways to do STDERROR. Under bash, you'd do something like./script.pl < infile > outfile
./script.pl < infile > outfile 2> errfile
|
---|