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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Command line FTP Client

Status
Not open for further replies.

tamkag

Programmer
May 22, 2006
2
US
I'm looking for a FTP client that is similar to NCFTP in that I can run a full ftp command in one line without needing to access the client first then typing the ftp commands.

Very simple request but I can't find any other tool like that, I have downloaded Kermit thinking I can use it to tranfer files from the command line but I found out that you have to access the tool first the put in commands.

For example in ncftp I would do something like:
$ /hps/ncftpclient/ncftp-3.1.8/bin/ncftpput -u username -p password -P 21 -a 10.1.1.1 /folder1/folder2/filename.pdf

I need to do the same but with a different client.

Please advice

Thank you in advnace
 
And what about something like this ?
echo "user username password
binary
put /folder1/folder2/filename.pdf
bye" | ftp -in 10.1.1.1

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top