Search Results

Search: Posts Made By: n70arun
5,120
Posted By RudiC
man find: So you might need to specify -mtime...
man find:
So you might need to specify -mtime +0 to find any files, as 0 alone will just find those files modified exactly NOW.
4,075
Posted By Ygor
You could also use the shell built-in variable...
You could also use the shell built-in variable $SECONDS

#!/bin/sh
START=$SECONDS
:
#script commands go here
:
END=$SECONDS
echo elapsed time is $((END-START)) seconds
32,597
Posted By jim mcnamara
find /top/directory -type f -exec grep -l...
find /top/directory -type f -exec grep -l 'string I want to find' {} \;
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 01:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy