I writing a shell script to import a password on a password prompt.. How can I enter a password on a password prompt without typing the words in...For example if I do su -help the password prompt shows up. How can I import the password automatically into the script which then writes in when the password prompt shows up...Here's a example of my script or would I need to write this C
start="su -help"
export start
echo "Starting the user help"
$start echo
????????????(password prompt)
start="su -help"
export start
echo "Starting the user help"
$start echo
????????????(password prompt)