Good Day,
I have the following script which currently sends its output to stdout. We would like to send the output to /dev/null.
Is it possible?
cat << END | ftp -n -v server_name
user user_name password
lcd l_dir
cd dir
mget `date +%y%m%d`*
bye
END
Thanks,
Dan
I have the following script which currently sends its output to stdout. We would like to send the output to /dev/null.
Is it possible?
cat << END | ftp -n -v server_name
user user_name password
lcd l_dir
cd dir
mget `date +%y%m%d`*
bye
END
Thanks,
Dan