Hello, I've got a script to delete 0 byte files, but I need it to work only for files that have been created at least 2 seconds ago (Are two seconds old). I'm not sure what's the best way of doing this, I've had a look at the stat command too but well.. Code: for file in `ls -l | grep ^- |
awk '{print $5, $9}' | grep ^0 | awk '{print $2}'` ;do chmod 777 $file >/dev/null 2>&...