Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Ftp process
Name: n Date: September 28, 2005 at 14:26:52 Pacific OS: Unix CPU/Ram: NA
Comment:
Hi all,
I need your help with ftp process.
I want to setup a new user to allow the person to ftp file to a designated directory on an Unix server. I want to put some restrictions on the user access as follows: 1) can only add file to directory 2) can overwrite/delete own file 3) cannot access other directories 4) cannot delete files posted by others
Summary: Hi, I am trying to automate a ftp process that would pull data from a source machine to a target m/c.It should not prompt for inputs(would use something like ftp -n) and then pass userid/password and ...
Summary: Two approaches come to mind: In ksh build up a variable containing all the filenames, then use that with an MPUT command in FTP, e.g: list=*$(date +%Y%m%d).dat print "Here's the list:" for f in ${list...