szubert

Untitled

Dec 4th, 2015
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. find ~/../linecountfiles/ -maxdepth 1 -type f -name "[[:upper:]]?*[!.]" | xargs cat | wc -l
  2.  
  3.  
  4. cat ~/../command.c | grep -v "^ *$" | grep -v "^[[:space:]]*{[[:space:]]*$" | grep -v "^[[:space:]]*}[[:space:]]*$" | wc -l
  5.  
  6. cat ~/../command.c | grep "\/\*.*\*\/" | cut -d'/' -f2 | cut -d'*' -f2 | sort | uniq | nl
  7.  
  8. find ~/ -maxdepth 1 -type f -mtime -1 -not -name "\.*" | xargs -t -i cp {} ./backup/
Advertisement
Add Comment
Please, Sign In to add comment