I am trying execute a script from standard input and also pass arguments to it. Is there a way to do it?
Let's say that I have the following:
cat script.sh | bash
How would I pass the arguments to the script?
I do not want to do this:
bash script.sh arguments
Nor this:
./script.sh arguments