check file exists and created today issue


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting check file exists and created today issue
# 1  
Old 03-09-2011
check file exists and created today issue

Morning

My other issue I have seems very simple but im just not seeing it. I have a script that checks on a remote share to see if the backups for some systems have run. Its as simple as:
Code:
find /mnt/ukwcs-net-config/WLAN-Controllers/ -mtime -1 -ls | egrep '(cfg)' > wlanlog.txt
cut -c 1-92 --complement wlanlog.txt >> send.txt

This is in about 6 times with different locations and at the end it emails the contects of send.txt to me.

Im wanting it now to check if file exists with todays date and out put either pass or fail. The issue im having is combining it all to find the file with todays date and give the required output. The locations of the backup files has about 60days worth all with the date in some format in the file name so the only option I could see was to find files created today (midnight on) and do the same for each location but im stuck.

Can anyone point me in the right direction please

Lee

Last edited by Franklin52; 03-09-2011 at 05:13 AM.. Reason: Please use code tags, thank you
# 2  
Old 03-09-2011
could you put more examples what you need ...

to check if file is created today or use find -mtime what you mentioned ...
# 3  
Old 03-09-2011
if file exists with todays date ---can you paste sample of date showing up?
# 4  
Old 03-10-2011
I will post some examples tomorrow

Thanks

Lee
# 5  
Old 03-14-2011
I have made some changes to the script and it worked once but not know.

The basics are I want to output a pass / fail if a file exists for a specified date. The script I have now is

Code:
if find /mnt/ukwcs-net-config/HyperConf/Bingley\ Road/172.16.100.0/172.16.100.20*.txt -type f -mtime -1 -print; then
        echo "***Backup completed***" 
else
        "echo ***BACKUP FAILED***" 
fi

The plan is that the backup runs each night from midnight on. so im trying to fine if the file is there within from midnight on for that day.

The output I get is always completed even when the file is not there for the range given.
this is repeated for different locations which hold the backup files and at the end it emails the results.
the reason im looking for files within a time frame is that all the different backup files I have are in different name formats and all contain the date in some format within the file name so I cant specify the file directly.

I may be going about this completely wrong so your advise appreciated.
Thanks

Lee

Last edited by ltodd2; 03-16-2011 at 10:57 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Check if file exists

I need to check whether a file exists and has been changed. The file should contain a specific string. The file should also have been changed within the last ten seconds. How do I do that? (3 Replies)
Discussion started by: locoroco
3 Replies

2. Shell Programming and Scripting

To check if file exists

Hi, I have the below code written. However I am not getting the desired output I am checking if the particular path has file in it. #!/bin/bash ls -l /IRS2/IRS2_ODI/INFILE/*LS* 1>/dev/null 2>/dev/null if then echo $? echo "File Exists" fi ... (3 Replies)
Discussion started by: Shanmugapriya D
3 Replies

3. Shell Programming and Scripting

Check if file exists or not

Hi, I want to check if the file exists or not in the directory. i am trying below code but not working. File="/home/va59657/Account_20090213*.dat" echo "$File" if ]; then echo "file found" else echo "file not found" fi However i am getting file not found even if file exits as... (5 Replies)
Discussion started by: Vivekit82
5 Replies

4. Linux

List all files created today exclude last one

Hi, ALL thanks in advance, i listed all files using this command ls -ltr $(date +%Y%m%d)*.xmlbut i would like to exclude the last one created ; Best regard MEROUAN Use code tags, thanks. (4 Replies)
Discussion started by: merouan
4 Replies

5. Shell Programming and Scripting

How to find files created today in a particular directory?

Dear All, I want a Hp Ux command to find out the files created today in a particular directory or mountpoint. Kindly help. Thanks Bhaskar (10 Replies)
Discussion started by: sudiptabhaskar
10 Replies

6. Shell Programming and Scripting

File exists, but cannot be opened.How to check- whether it could be opened to read when it exists

Hi #Testing for file existence if ; then echo 'SCHOOL data is available for processing' else echo 'SCHOOL DATA IS NOT AVAILABLE FOR PROCESSING' : i wrote a script, where it begins by checking if file exists or not. If it exists, it truncates the database... (2 Replies)
Discussion started by: rxg
2 Replies

7. Shell Programming and Scripting

how to check to see if a file exists?

I want to write a script to see if various files exist. What I want to do is have the script search in various directories if a file exist, and if not, then output something like "/path/file does not exist". I don't actually know of how to check and see if a file exists or not. What I have in mind... (2 Replies)
Discussion started by: astropi
2 Replies

8. Shell Programming and Scripting

Check to see if a file exists?

Hi. I'd like to have an IF-Then-Else statement where I can check to see if a file exists? We have the Bourne Shell by default. I'm looking for the syntax to do something like this: if myfile.txt exists then ...my code else ...my code end if Any help would be greatly... (5 Replies)
Discussion started by: buechler66
5 Replies

9. Shell Programming and Scripting

Calculate Files Created Today

I need to figure out how to get all the files from a certian dir ./123/*sat files and ./230/*sat files and several other directories which have these *sat files in them. I need to calculate how many were created today and how many yesterday from 2:00 pm on the 28th to 2pm on the 29th. It's a... (1 Reply)
Discussion started by: xgringo
1 Replies

10. Shell Programming and Scripting

Files with 0 file size and created today

hi, I am building a script to identify those files created/modified today and with file size 0. I am able to find the files with 0 file size and created/modified in last 24 hrs as shown below but not today (current date), I tried using (touch -t time filenm) but in my version of unix at work it... (7 Replies)
Discussion started by: rushs682
7 Replies
Login or Register to Ask a Question