9/29/2005
Delete Files Newer Than
Delete a files newer than filename in the local directory
find ./ -type f -newer filename -print|xargs rm
Delete a files older (ie. not newer) than filename in the local directory
find ./ -type f ! -newer filename -print|xargs rm
Popularity: 11%


