#!/usr/bin/perl # Simple, but wonderfully useful. Find all files on system with name # supplied on command line, and get a "long" listing of them that shows their # time stamp. # # next step, is to write one that sorts them into order of latest file alteration. foreach $_ (`locate $ARGV[0]`){ system ("ls -lt $_");}