File search variables


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting File search variables
# 1  
Old 12-12-2007
File search variables

I have a remote server that generates files with name format:
Daily_Generated_File_11-14-07.txt.

The file name remains the same regardless, but the date portion at the end of the name will change (mm-dd-yy). Can someone supply a script that will search for files with the latest date based on the file name?
# 2  
Old 12-12-2007
How will the code get the list of files to search?

Could you not just start at today and work backwards?
# 3  
Old 12-12-2007
Quote:
Originally Posted by porter
How will the code get the list of files to search?

Could you not just start at today and work backwards?

No this is something new, so it will search for files today going forward.
# 4  
Old 12-12-2007
Quote:
Originally Posted by bbbngowc
No this is something new, so it will search for files today going forward.
So, today, you have files with tomorrow's date?

How does this code get the list of files?
# 5  
Old 12-12-2007
Quote:
Originally Posted by porter
So, today, you have files with tomorrow's date?

How does this code get the list of files?
Huh? I think you miss understood.

I need the script to look in a remote directory for today's files. I came up with this and it works, but now how to I get this to run on a remote FTP Server Smilie

FILENAME="Daily_Generated_File_$(date +%m-%d-%y).txt"
find . -type f -name $FILENAME
# 6  
Old 12-12-2007
Okay, it's FTP then.

I suggest you first use FTP to get a listing then enumerate through that listing and decide which is the latest.

Then when you know the name, use get to download it.

Whether you use two ftp sessions or one depends on how fancy you want to do your coding.
# 7  
Old 12-13-2007
Quote:
Originally Posted by porter
Okay, it's FTP then.

I suggest you first use FTP to get a listing then enumerate through that listing and decide which is the latest.

Then when you know the name, use get to download it.

Whether you use two ftp sessions or one depends on how fancy you want to do your coding.
Sounds about right.

Now, if only someone would be so gracious as to get me started on this .. Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Read in search strings from text file, search for string in second text file and output to CSV

Hi guys, I have a text file named file1.txt that is formatted like this: 001 , ID , 20000 002 , Name , Brandon 003 , Phone_Number , 616-234-1999 004 , SSNumber , 234-23-234 005 , Model , Toyota 007 , Engine ,V8 008 , GPS , OFF and I have file2.txt formatted like this: ... (2 Replies)
Discussion started by: An0mander
2 Replies

2. Shell Programming and Scripting

Retrieving the relevant search from search file in the main file

I have two files: file 1: hello.com neo.com,japan.com,example.com news.net xyz.com, telecom.net, highlands.net, software.com example2.com earth.net, abc.gov.uk file 2: neo.com example.com abc.gov.uk file 2 are the search keys to search in file 1 if any of the search... (7 Replies)
Discussion started by: csim_mohan
7 Replies

3. Shell Programming and Scripting

Perl - use search keywords from array and search a file and print 3rd field when matched

Hi , I have been trying to write a perl script to do this job. But i am not able to achieve the desired result. Below is my code. my $current_value=12345; my @users=("bob","ben","tom","harry"); open DBLIST,"<","/var/tmp/DBinfo"; my @input = <DBLIST>; foreach (@users) { my... (11 Replies)
Discussion started by: chidori
11 Replies

4. Shell Programming and Scripting

awk search/replace specific field, using variables for regexp & subsitution then overwrite file

Hello, I'm trying the solve the following problem. I have a file which I intend to use as a csv called master.csv The columns are separated by commas. I want to change the text on a specific row in either column 3,4,5 or 6 from xxx to yyy depending upon if column 1 matches a specified pattern.... (3 Replies)
Discussion started by: cyphex
3 Replies

5. Shell Programming and Scripting

awk - ignore metacharacters, search shell variables

Can I use awk to search for a string, passed from the shell, that might include metacharacters? File1 entries: Bob Marley Jammin (Bonus Track).mp3 File2 entries: Bob Marley Jammin (Bonus Track).mp3 32000 /Music/Bob Marley/ Jammin (Bonus Track).mp3 So far, I have this; $ sed -e... (9 Replies)
Discussion started by: DSommers
9 Replies

6. UNIX for Advanced & Expert Users

use of variables in awk to search for pattern from a file

Hi, I need to extract all the content between two strings stored in two variables "startstring" and "endstring" startstring=hello enstring=world #notworking awk '/$startstring/, $NF ~ /$endstring/ ' file > file2 The above code is not working with variables. It works when actual string... (2 Replies)
Discussion started by: jeanjkj
2 Replies

7. Shell Programming and Scripting

Search between 2 variables

Hi Guys... can you tell me how to search between 2 variables ?... Im looking for a script that will move the data between varying words to separate files. I dont have my data on which I need to work right now... but it looks something like this.. start name1 data(a) data(b) stop name1 ... (6 Replies)
Discussion started by: R!C
6 Replies

8. HP-UX

Search environment variables for paths

Hi, I am using the HP machine at the moment and by default I have been setup with the kron shell i.e. my home profile is .kshrc I would like to access a program anywhere on the system so I have added a path and created an environment variable like this: export myvarpath=/a/abc/def/ghij... (3 Replies)
Discussion started by: cyberfrog
3 Replies

9. Shell Programming and Scripting

search and replace using awk with variables

Hi, I have been trying to use awk with variables that needs to search for a pattern and replace it with another pattern, the patterns are supplied in a variable. I have tried several different ways without success and hope that someone can help me. Here are the details echo $UPC 07007457809... (2 Replies)
Discussion started by: jerardfjay
2 Replies

10. Shell Programming and Scripting

Ksh script - Design ? - Search file and set variables

Hi - I'm trying to think of a clever way to write a shell script (trying to stay w/ ksh as that's what I know the best...) that will resolve the following problem: Problem - On a daily basis I have to email folks who are on-call to remind them. I was hoping to script this out so I could have... (9 Replies)
Discussion started by: littlefrog
9 Replies
Login or Register to Ask a Question