Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to find a file and ftp it 1

Status
Not open for further replies.

din2005

Programmer
Mar 22, 2005
162
GB
Hi all am fairly new to unix scripting and would like to know if there is a way to identify file & directory by date created and also how to ftp the the directory/files.

Could any of u be nice enough to provide some examples or what commands i need to get me going

many thanks

 
start with
Code:
man find
for finding things by various criteria.
command line ftp will only cope with single files so you might want to consider
Code:
man tar
for a way of bundling files/directories together.
Have you condsidered the secure altenatives.
Code:
man scp
man ssh
man sftp
might give some help.
As you want to minimise network traffic you might want to look at
Code:
man compress
to compress the files.

Columb Healy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top