i am new to scripting, i am running an bin file through a bash command, and once the bin starts to run its expects an enter key to continue. Below is the script
#!/bin/bash
pwd; cd /root/program;
pwd;
echo start install
echo !@#$%^
sleep 10;
sh program.bin;
once the bin starts to execute it expects an enter. Can any one please guide me.