| Author |
how to reterive a file from specific path using unix script
|
prasanna ganesh
Greenhorn
Joined: Jul 04, 2011
Posts: 9
|
|
Hi,
I want to take a file from specific path using unix shell script.
The file which i want, should take the file from the location given by using the following command in unix "$ls -ltr | tail -1". That is it should take the latest file in that path.
Below is my script. I can able to view the list of files in the path but i need to take the file into one specific location or into a variable.
Could some one help me on this. Thanks for your help in advance.
#!/bin/ksh
PATH= /www/a/logs/
if [ -d $PATH ]
then
echo "is a directory"
ls -ltr | tail -1
fi
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14456
|
|
FILE=`ls -ltr | tail -1`
Or you can use the alternate evaluation notation, which goes something like this:
FILE=${{ ls -ltr | tail -1 }}
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
 |
|
|
subject: how to reterive a file from specific path using unix script
|
|
|