useful-linux-cmd

寻找
1
2
find .  -mtime -4(4天内)/4(4天前的那一天)/+4(5天前)
locate fielname* (updatedb)
寻找定位
1
find ./ -name "*.c" -exec grep -n "string" {} \;
寻找与替换
1
find -name "*" -exec sed -i 's/str1/str2/g' {}\;-print
ssh请求
1
2
ssh -nNTf  -D 7000 root@IP
ssh -qTfnN -D 7070 root@IP