Apr 8, 2004 #1 md1750 MIS Apr 18, 2001 80 US What command should I use to find files and directories that have not been accessed say in one year on a partition.
What command should I use to find files and directories that have not been accessed say in one year on a partition.
Apr 8, 2004 #2 johngiggs Technical User Oct 30, 2002 492 US md1750, The best solution would probably be to use the touch and find commands. Ex. touch -t 200304080000 olddate find /path/to/search ! -newer olddate -print John Upvote 0 Downvote
md1750, The best solution would probably be to use the touch and find commands. Ex. touch -t 200304080000 olddate find /path/to/search ! -newer olddate -print John
Apr 8, 2004 Thread starter #3 md1750 MIS Apr 18, 2001 80 US This has solved my problem.Thanks. Upvote 0 Downvote