yesterdays files


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers yesterdays files
# 1  
Old 05-01-2004
Computer yesterdays files

I am new to UNIX and I am trying to write a shell script. I want to be able to list all files that were created with yesterdays dates (APR 29 as an example) that are not 0 file size.Then in those files I want to look for the string 'Process Complete' and list all files that DONT have that string. Any ideas would be appreciated, I know it will involve grep and date but I am only starting out and the syntax does still confuse me a lot.
# 2  
Old 05-01-2004
Sounds like a job for the find command. When looking for yesterdays files, you can create a reference file with the touch command. Search the boards for this as there are a few recent examples. The rest of the work you need to accomplish can also be done using find. See man find Here is one such thread using the reference file. Click Here
# 3  
Old 05-01-2004
i'm in good homour, so..... say thanks :-)

#!/usr/bin/ksh
FOUND=`find ./ -ctime -1 -mtime -1 -atime -1 -size +1c -print -depth`
for OUTPUT in $FOUND
do
COMPLETE=`fgrep "Process Complete" $OUTPUT`
if [ -z $COMPLETE ]
then
echo $OUTPUT
fi
done

greetings Preßy

*no responsibility is taken for the correctness of this information*
# 4  
Old 05-02-2004
Thanks guys, i will try and let you know how I get on.
# 5  
Old 05-04-2004
I keep getting the error with pressy script:

UX:ksh: ERROR: test: argument expected

Any ideas?
# 6  
Old 05-04-2004
That error message is complaining about this line:


if [ -z $COMPLETE ]


The way pressy has it is correct though. Make sure you have a space between the brackets and the next character (between the [ and the - and also between the E and the ]. I've had times when I forgot the space and got that error. Also make sure the variable $COMPLETE is spelled correctly both here and where it is defined.

If it isn't that I'm not sure what would be causing it. If you are using ksh, which is looks like you are, you can try doing

ksh -x scriptname

to execute it with debugging. It will give you the output of each line so you can see what error is causing the problem hopefully.
# 7  
Old 05-04-2004
Thanks, I have decided to try a different way though. The way I am trying is:

find ./logs -size +1c -exec grep -l 'Process Complete' {} \; -exec ls -l {} \; > $TOD

I am then checking the entries in this file against a date variable held in another file and echoing.

However, I cant bring back files that dont have 'Process Complete' only those that do.

Last edited by tonydsam; 05-05-2004 at 06:45 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Logrotate and Compressing only yesterdays files

Hello, I have a syslog server at home and am currently experiencing an issue where my logs will rotate and compress however it will rotate and compress yesterdays file and the newly created log file for the current day. When it does this however it will also create another new file for today... (9 Replies)
Discussion started by: MyUserName7000
9 Replies

2. UNIX for Dummies Questions & Answers

Using xargs To Delete Yesterdays File

Using the find command to find files in a directory and automatically delete files older than 24 hours find . -mtime +0 | grep file | xargs rm. Using the find man page but I can't seem to make it work for files that have the previous day's time stamp but are not 24 hours old. Is there a way for... (4 Replies)
Discussion started by: jimmyf
4 Replies

3. Shell Programming and Scripting

How to list todays and yesterdays .rej files from a directory?

I am trying to display todays and yesterdays .rej files from a directory. ls -lrt *.rej | grep 'Aug 12' ; ls -lrt *.rej | grep 'Aug 13' Which is working as above. But i want take 'Aug 12' and 'Aug 13' from a variable and the command should work everyday. I am able to get todays files by... (9 Replies)
Discussion started by: GopalKrishnaP
9 Replies

4. Shell Programming and Scripting

how to get the yesterdays date?

Hi All, Can anybody help me to get the yesterdays date in perl script. My script is as below #!/bin/perl -w $yes=system("TZ=IST+24 date +%d-%m-%Y"); print "$yes\n"; script is writting the date but with 0 pls see the output below #!/bin/perl -w $yes=system("TZ=IST+24 date... (2 Replies)
Discussion started by: jam_prasanna
2 Replies

5. Shell Programming and Scripting

Filtering the yesterdays date from log files via script.

hi All, I have this sample text file - access.log: Jan 18 21:34:29 root 209.151.232.70 Jan 18 21:34:40 root 209.151.232.70 Jan 18 21:34:43 root 209.151.232.70 Jan 18 21:34:56 root 209.151.232.70 Jan 18 21:35:10 root 209.151.232.70 Jan 18 21:35:23 root 209.151.232.70 Jan 18 21:36:04 root... (2 Replies)
Discussion started by: linuxgeek
2 Replies

6. UNIX for Dummies Questions & Answers

Need to pull Yesterdays Date...

I tried this and it works for the most part, but if the date is 20090301, it displays 20090300. YESTERDAY=$((`date +%Y%m%d` -1)) (2 Replies)
Discussion started by: cards0622
2 Replies

7. UNIX for Dummies Questions & Answers

How to get yesterdays julian date

Hi, Was using date +%Y%j to get current julian date. Can anyone let me know how can I get y'day's julin date. Thx Did check FAQ but couldn't find anything. Thanks. (3 Replies)
Discussion started by: er_ashu
3 Replies

8. Shell Programming and Scripting

yesterdays date

To get yesterays date, execute the command : TZ=aaa24 date +%Y%m%d Output format will be yyyymmdd (2 Replies)
Discussion started by: sujju1985
2 Replies

9. Shell Programming and Scripting

using find to get all of yesterdays files

i tried to use "find" to get all of yesterdays files but missed something in the 24 hours logic. can anybody help me with this one? i thought that -daystart -atime 1 was enough but i got more files (2 Replies)
Discussion started by: progressdll
2 Replies
Login or Register to Ask a Question