Search Results

Search: Posts Made By: haadiya
Forum: HP-UX 03-20-2015
9,694
Posted By RudiC
You don't need to create that file in the target...
You don't need to create that file in the target dir, create it in your home dir. Or in /tmp.
Forum: HP-UX 03-24-2015
9,694
Posted By MadeInGermany
If you run the script every 2 hours then simply...
If you run the script every 2 hours then simply leave a file behind and compare timestamps in the next run.
me=${0##*/}
lr=/tmp/$me.lastrun
if test -f $lr
then
for f in $(find . \! -name ....
Forum: HP-UX 03-20-2015
9,694
Posted By RudiC
Do you have a touch command that allows you to...
Do you have a touch command that allows you to create a file 2 hours old? Then use this for the -newer find primary.
Forum: HP-UX 03-20-2015
9,694
Posted By RavinderSingh13
Hello Haadiya, Could you please try...
Hello Haadiya,

Could you please try following and let me know if this helps.

NAME_FILE=`ls -lhtr | awk '($1 !~ /^d/) {print $9}' | tail -1`
CHECK_FILE=`find -maxdepth 1 -type f -name...
Forum: HP-UX 03-20-2015
9,694
Posted By RavinderSingh13
Hello Haadiya, Following may help you in...
Hello Haadiya,

Following may help you in same.

VAL=`find -type f -mmin +120 -iname "Input_file"`
if [[ -n $VAL ]]
then
echo "File is OLDER than 2 hours."
else
echo "File is...
Showing results 1 to 5 of 5

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