I'm making a shell script and I want to know if it's possible to write directly to the command line when the script is executed ?
Example :
user@localhost:/home/user$./script.sh
... output
... another output
... another output
... last output
user@localhost:/home/user$I want to write here on the command line
I don't want to "echo" some text, I want to write directly at the prompt.
Thanks!