|
Från fotoalbumet
nätfavoriter
Mackes sida
språk/language
Logga in
|
News Articlesclean up your old filesPosted by: andreas on Sön, 25 Oktober 2009 09:07:03 (105 Reads)These are handy to clean up your home folder. To list all files older then 1 year: find . -type f -mtime +356 -ls To delete them: find . -type f -mtime +356 | xargs rm To list all empty folders: find -depth -type d -empty To delete all the empty folders: find -depth -type d -empty -exec rmdir {} \; To "touch" all files in a folder recursively: find [foldername] -print0 | xargs -r0 touch To list only the top name of hidden files or folders older then one year: find . -maxdepth 1 -mtime +356 \( -iname ".*" \) -ls Note: en_GB.utf-8 Det finns inga kommentarer bifogade till den här posten
Betyg
Number of ratings: 0
|