![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| parse an arpwatch file and retain most recent mac | CM64 | Shell Programming and Scripting | 8 | 04-12-2007 12:21 AM |
| Get the most recent file from a remote server | anujairaj | UNIX for Dummies Questions & Answers | 5 | 09-27-2006 10:31 AM |
| getting the most recent file | anujairaj | Shell Programming and Scripting | 3 | 06-22-2006 03:34 PM |
| Changing name of most recent file | warpmail | AIX | 1 | 02-15-2006 07:34 PM |
| Most Recent File script | josborn777 | Shell Programming and Scripting | 1 | 03-29-2002 05:01 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
reading directory for most recent file?
Dear All,
I'm trying to write a script that searches thru a directory looking for a most recent file and then scp that file. I have the scp working, but I don't know how to browse the directory and select the most recent file. The file name includes a date & time stamp (e.g. 20020822112501) Any ideas?? I'm really stuck with this one, complete novice! |
|
||||
|
Some questions
Are you looking for the file which has the most resent filename?
-- If so you can use the sort command, like `ls -1 | sort` Are you looking for the file which is most resent touched (writing in the file)? -- If so you can use the ls command, like `ls -rt1 | tail -1` take care JanR |
|
||||
|
e.g.
depends on the shell you use
#!/bin/csh setenv RESENTFILE `ls -rt1 | tail -1` echo $RESENTFILE exit |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|