<br><div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">I have strearipper recording my fave radio stations in to a folder for<br>me to listen to later. Of course the folder fills until there is no
<br>space left on the disc.<br>Could some one provide me with a sample script that I could run as a<br>cron job and it would go through the streamripper folder deleting files<br>older than 1 week (for example). Many thanks
</blockquote><div><br><br>If your files have spaces in the name you'll need to do something like this:<br><br>find /path -name 'stream*.mp3' -mtime +6 -print0 | xargs -0 rm -f<br><span class="sg"><br>Jon<br></span>
</div></div>