What chmod +x does
Make a file executable so you can run it like a program.
chmod+xscript.sh
chmod— command — change who may read, write or run a file+x— argument: a file, a folder, or textscript.sh— argument: a file, a folder, or text
What it does when you run it
$ chmod +x script.sh $ ./script.sh hi
Run it yourself
The same files. Nothing here can break, and nothing leaves your browser.
Where you use it
Explain other commands
Written by Mikhail Kuzmitskii