Feature Request: Add option for command line parameters
I would like to be able to run scripts with command line parameters. This would be a big help. Especially if they can be copypasted.
ommand line parameters. This would be a big help. Especially
I really don't understand. Can you tell me more? Probably, an example? Thanks.
so, instead of just running
#!/usr/bin/bash
echo hello world $1 $2 $3
./shell.sh Hello World
./shell.sh item1 item2 item3 Hello World item1 item2 item3
see?
Like this:
- Creating (can add variables):

- When run (ask for variables):

- Writing the variables:

- After running:

That works
@Mitezuss Atm, I really don't have any idea to implement it. Also, even I managed to do it, how app handles it when user set such a script on boot?
add the variables to the command line when you execute the script in order?