hi! I'm having a problem getting a unix script to log onto an IBM mainframe. the script looks like this:
#!/bin/ksh
ftp -n -i mainframename <<!
user mainframeaccountname password
can I have the username and password on the one line? or do I need to indicate somehow the the password is actually the password?
#!/bin/ksh
ftp -n -i mainframename <<!
user mainframeaccountname password
can I have the username and password on the one line? or do I need to indicate somehow the the password is actually the password?