Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 284 Bytes

bash.md

File metadata and controls

13 lines (10 loc) · 284 Bytes

bash

redirect stdout and stderr to file

command1 >> log_file 2>&1 # same file
command1 >> log_file 2>> err_file # different files

tools