HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- FTP Job HP-UX
Operating System - Linux
1826424
Members
3442
Online
109692
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
05-26-2008 03:34 AM
05-26-2008 03:34 AM
FTP Job HP-UX
Hello,
I appreciate if someone can help me on this:
I need to create FTP job that move files from specific path on HP-UX box to another path on HP-UX system, I need to move only files with the following format only:
XDS****DMF***
And
XDSDMF********
Above job will run on daily bases.
Thanks,
Yazan
I appreciate if someone can help me on this:
I need to create FTP job that move files from specific path on HP-UX box to another path on HP-UX system, I need to move only files with the following format only:
XDS****DMF***
And
XDSDMF********
Above job will run on daily bases.
Thanks,
Yazan
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2008 03:39 AM
05-26-2008 03:39 AM
Re: FTP Job HP-UX
Perhaps you mean cron job, not ftp.
If files are text files , containing XDSDMF** ... just write a simple script for finding such files and move it to specific location.
regards,
ivan
If files are text files , containing XDSDMF** ... just write a simple script for finding such files and move it to specific location.
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2008 03:53 AM
05-26-2008 03:53 AM
Re: FTP Job HP-UX
Hi
edit asper your requirement and add this as a script in crontab
#!/bin/sh
ftp -n << !EOF
user unix-username password
cd /
prompt
bin
mput XDS****DMF***
mput XDSDMF********
quit
!EOF
edit asper your requirement and add this as a script in crontab
#!/bin/sh
ftp -n
user unix-username password
cd /
prompt
bin
mput XDS****DMF***
mput XDSDMF********
quit
!EOF
a warrior never quits
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2008 04:37 AM
05-26-2008 04:37 AM
Re: FTP Job HP-UX
>with the following format only: XDS****DMF***
If this is a shell Pattern Matching Notation, you'll need:
XDS????DMF???
(Otherwise only one "*" is needed.)
If this is a shell Pattern Matching Notation, you'll need:
XDS????DMF???
(Otherwise only one "*" is needed.)
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP