Category Archives: shell

Unix Shell Script

IO Standard IOs 0 stdin 1 stdout 2 stderr IO Redirects # Redirect stdout to a file: 1>filename echo "test" 1>stdout.txt   # Redirect stdout and append to a file: 1>>filename   # Redirect stderr to a file: 2>filename   … Continue reading

Posted in shell, unix | Comments Off on Unix Shell Script