- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: In FTP add remote file to the local file
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2003 10:08 AM
02-21-2003 10:08 AM
In FTP add remote file to the local file
I understand that the append command of ftp adds the local file to the remote file. But i need a command that adds the remote file to the local file.
For example,
>ftp star10
>user abc xyz
>(This command needs to append the
remote file to the local file)
>quit
Your help is highly appreciated.
Thank you,
Chandra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2003 10:24 AM
02-21-2003 10:24 AM
Re: In FTP add remote file to the local file
Don't believe there's a single command to do this. But you could do this several ways:
1) Move the local file to remote. Pull the remote file to local. Then append & pull it back
ftp>put local
ftp>get remote
ftp>append remote local
ftp>get local
ftp>bye
2) Pull the remote & cat it to local
ftp>get remote
ftp>bye
#cat remote >> local
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2003 10:25 AM
02-21-2003 10:25 AM
Re: In FTP add remote file to the local file
ftp star10
>user abd pass
> runique
> get filename
> ! cat filename.1 >> filename
> ! rm filename.1
>bye
hope this helps..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2003 10:28 AM
02-21-2003 10:28 AM
Re: In FTP add remote file to the local file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2003 10:35 AM
02-21-2003 10:35 AM
Re: In FTP add remote file to the local file
Chandra