|
Dear Sir,
I'm passing the passwords in shell script by using << EOF
EOF
but its giving the warning as "stty: standard input: Inappropriate ioctl for device". is this expected?
Please see below script for reference-
#!/bin/bash
apps_pwd=apps
wl_pwd=weblogic
. /data/DEV/apps/EBSapps.env run
cd $ADMIN_SCRIPTS_HOME
perl adpreclone.pl appsTier << EOF
$apps_pwd
$wl_pwd
EOF
Thanks
Vikash
|