LoFa
Add
Login
Search
Title:
Tag1 for Path:
a single word in lower characters
Tag2 for Path:
List of alternative single tags:
one or many words in lower characters, separated by comma or space
Text:
<p>Instead of clearing the whole tmp directory I will remove old files/directories by month name (Jan, Feb etc): </p> <code> sudo rm -R `ls -altr /tmp/ | grep Jan | awk '{print "/tmp/" $9}'` </code> <p>Alternative: find files created more than 7 days ago and remove them:</p> <code> find /tmp -mtime +7 -print0 | xargs -0 /bin/rm -R -f </code>
URL:
Operation:
Delete
Update
Insert
Template Prompt