my email is andreas at nyback.com
Från fotoalbumet
Signelill Nyback

Signelill Nyback

Date: 11/22/03

nätfavoriter
Mackes sida
språk/language
Logga in

Registrera nytt konto

Begär nytt lösenord

News Articles

clean up your old files

Posted 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  no star no star no star no star no star
Number of ratings: 0

Alternativ:
Visa artikelkarta
Visa arkiven