grepOutUbunutuFiles 455 B

123456789101112131415
  1. #! /bin/bash
  2. # Grep out files that change a lot in Ubuntu home directory
  3. #
  4. # Usage: cd ~ ; ls -l | grepOutUbuntuFiles
  5. #
  6. #
  7. # Example:
  8. #
  9. # To find files that have changed today on an Ubuntu system home
  10. # directory that are not standard files:
  11. #
  12. # find . -mtime -1 -print0 | xargs -0 ls -ltd | egrep -vi \\.mozilla\|\\.macromedia\|\\.cache\|\\.config\|\\.local | egrep -vi Mail
  13. #
  14. egrep -vi \\.mozilla\|\\.macromedia\|\\.cache\|\\.config\|\\.local