- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- ftp problem
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
07-15-2004 03:20 AM
07-15-2004 03:20 AM
I have files called a.b;1 & a.b;2 on my VMS machine.
I did ftp to VMS from my Window NT pc, and when I try to get a.b;1, I get the a.b;2 . How can I get a.b;1 ?
Here is the relevant output:
_______________________________
ftp> ls a.b
200 PORT command successful.
150 Opening data connection for a.b (10.50.26.167,2185)
A.B;2
A.B;1
226 NLST Directory transfer complete
14 bytes received in 0.00 seconds (14000.00 Kbytes/sec)
ftp> get a.b;1
200 PORT command successful.
150 Opening data connection for DSA200:[ABCD]A.B;2 (10.50.26.167,2186) (20 bytes
)
226 Transfer complete.
19 bytes received in 0.00 seconds (19000.00 Kbytes/sec)
ftp>
_______________________________________
Thanks & regards,
Lokesh Jain
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 03:26 AM
07-15-2004 03:26 AM
Re: ftp problem
http://h71000.www7.hp.com/wizard/wiz_6063.html
Thanks & regards,
Lokesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 03:27 AM
07-15-2004 03:27 AM
Re: ftp problem
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 03:31 AM
07-15-2004 03:31 AM
Re: ftp problem
No, I do not have an alternate FTP client. I am using Microsoft Windows NT 4 .
Best regards,
Lokesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 03:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 03:45 AM
07-15-2004 03:45 AM
Re: ftp problem
Its working.
Cheers,
Lokesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 06:49 AM
07-15-2004 06:49 AM
Re: ftp problem
ftp> get a.b.1
??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 06:29 PM
07-15-2004 06:29 PM
Re: ftp problem
was this really a question?
Anyway, I just tried, and it gets the right file :-)
If you specify
> get a.b.1
the file on your NT machine will also named a.b.1
Cheers, Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 06:37 PM
07-15-2004 06:37 PM
Re: ftp problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 06:39 PM
07-15-2004 06:39 PM
Re: ftp problem
ftp get has 2 parameters: input file (mandatory) and outfile (same of input file, if ommitted).
So the command
get a.b;1 a_1.b
means get a.b;1 from source host and put into target host with a_1.b name; the real problem is NT can't manage file with semicolon.
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 06:48 PM
07-15-2004 06:48 PM
Re: ftp problem
thank you for your lesson in FTP ;-)
From Lokesh's question it is apparent that some component is stripping off the version number. I don't know his exact environment, so I was wondering if the old 'trick' of using "." instead of ";" for the version number separator did work in his environment.
(I know it is not really a "trick", but legitimate syntax on OpenVMS)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 07:08 PM
07-15-2004 07:08 PM
Re: ftp problem
>put file file;1
will always overwrite version 1
and is usefull for big files
and funny
>put file file;-1
will create file_-1
>put file file;+1
will create file__1
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 08:02 PM
07-15-2004 08:02 PM
Re: ftp problem
Yours Terry.