# chmod +x

`chmod +x script.sh`

Make a file executable so you can run it like a program.

## What each part does

- `chmod` — command — change who may read, write or run a file
- `+x` — argument: a file, a folder, or text
- `script.sh` — argument: a file, a folder, or text

Source: https://zero2vibecode.com/explain/chmod-x
