I want to print the file names from a directory that are 1 hour old from current time using AWK command, file name starts with ‘file’.
i have a command like this already . i want to use AWK command to print the file names .
$find /tmp/test/ -mmin +60
i have files like below,
-rw-r–r– 1 TENT Tinstall 0 Jun 3 10:20 file1.txt
-rw-r–r– 1 TENT Tinstall 0 Jun 3 10:20 file2.txt
-rw-r–r– 1 TENT Tinstall 0 Jun 3 10:23 file3.txt
Please help out with awk command