I want to add a shell command in my bash shell script so that when the script is executed, it does an action equivalent to pressing enter key on the keyboard and then execute the rest of the commands in the script
eg : script.sh
#! /bin/bash <command equivalent to pressing enter key> echo "hi" What should be present in between the angle brackets so that output should be
$sh script.sh $ hi $
#!.