- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: FTP Scripting
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
11-10-2004 01:49 AM
11-10-2004 01:49 AM
USER=username
PASS=password
COLLECT=" /home/username/audit"
FILE1=" au_audit.op"
cd /home/ye103910/logftp01
ftp -nv 10.2??.?.? <
user ${USER}${PASS}
cd${COLLECT}
get${FILE1}
quit
FTPEOF
The error output is as follows:
Connected to 10.2??.?.?.
220 logftp01.tntlogistics.co.uk FTP server (Version 1.1.214.8 Fri Apr 20 07:27:42 GMT 2001)
ready.
Remote system type is UNIX.
Using binary mode to transfer files.
331 Password required for usernamepassword.
530 Login incorrect.
Login failed.
530 Please login with USER and PASS.
530 Please login with USER and PASS.
221 Goodbye.
Any ideas anyone?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 01:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 01:59 AM
11-10-2004 01:59 AM
Re: FTP Scripting
USER=username
PASS=password
COLLECT=" /home/username/audit"
FILE1=" au_audit.op"
cd /home/ye103910/logftp01
ftp -nv 10.2??.?.? <
user ${USER} ${PASS}
cd ${COLLECT}
get ${FILE1}
quit
FTPEOF
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 02:03 AM
11-10-2004 02:03 AM
Re: FTP Scripting
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 02:15 AM
11-10-2004 02:15 AM
Re: FTP Scripting
Thanks everyone...