9 lines
381 B
Bash
Executable File
9 lines
381 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Spitting out todays date and time for the 0 filesize cron ..."
|
|
date
|
|
|
|
find /var/www/offline.voicegardens.org/voicegardens/archive/ -maxdepth 1 -type f -size 0 | xargs -I {} rm -v {} | tee -a /var/log/voicegardens.org.log
|
|
|
|
find /var/www/voicegardens.org/voicegardens/archive/ -maxdepth 1 -type f -size 0 | xargs -I {} rm -v {} | tee -a /var/log/voicegardens.org.log
|