Guest User

Untitled

a guest
May 26th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. 1.再帰的に.svnを削除する方法
  2. find . -type d -name .svn -print0 | xargs -0 rm -rf
  3. 2.grep to search the current directory for any and all files containing the string
  4. grep -r --include=*.{cc,h} "hello" .
  5. 3.centos list openning port
  6. netstat -tln
Add Comment
Please, Sign In to add comment