Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.34 KB | None | 0 0
  1. find . -type f ! -size 0 \( -name '*.[chm]' -o -name '*.sh' \)
  2. find . -type f ! -size 0 \( -name '*.[chm]' -o -name '*.sh' \) -mtime -8 -ls | awk '{a+=$7}; END {print(a)}'
  3. find . -type f ! -size 0 \( -name '*.[chm]' -o -name '*.sh' \) -mtime -8 -ls -exec stat -c %b {} \; | awk '{a+=$7} END {print a*512}'
  4. tar -fc - * | gzip > archiv.tar.gz
  5. xargs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement