0. Linux Command
# grepe.g. grep -R abc /etc/network/ #-R ,"chmod -R"
[other param] grep -l -n -v
# find
e.g. find -type f -exec grep aaaa {} \;
[other param] find -name -size -perm -type -ctime -a -o -exec -ok
# input/output redirect
command > a.txt command >> a.txt
command 2> a.txt command 2>> a.txt
command > a.txt 2>&1 command &> a.txt
# tar
e.g. tar cvf 123.tar /etc/network/
tar xvf 123.tar