stdout redirection
➜ ganiks@bash-redirection cat 123
11111111
22222222
33333333
➜ ganiks@bash-redirection cat 123 >> abc
➜ ganiks@bash-redirection echo "one line" >> abc
➜ ganiks@bash-redirection cat >> abc
44444444
55555555
66666666^C
➜ ganiks@bash-redirection cat abc
11111111
22222222
33333333
one line
44444444
55555555
66666666
参考文档
stderr to stdout
➜ ganiks@bash-redirection cat > find.sh
find . -name "*" -print -exec grep "555" {} \;
^C
➜ ganiks@bash-redirection sudo chmod +x find.sh
➜ ganiks@bash-redirection ./find.sh
.
grep: .: 是一个目录
./abc
55555555
./nginx-V
./find.sh
find . -name