Hi
I'm using ftp to send file to another server - my problem is that I would like NOT to have the permission codes for the files changede
I using this script
#!/bin/ksh
user="nmsuser"
pswd="o&moper1"
ftp -inv $1 <<END
user $user $pswd
ascii
cd $dir
send $2
bye
END
throu the firewall the only thing open is FTP between the 2 servere.
Thanks
Larshg
I'm using ftp to send file to another server - my problem is that I would like NOT to have the permission codes for the files changede
I using this script
#!/bin/ksh
user="nmsuser"
pswd="o&moper1"
ftp -inv $1 <<END
user $user $pswd
ascii
cd $dir
send $2
bye
END
throu the firewall the only thing open is FTP between the 2 servere.
Thanks
Larshg