Loading…
chmodEvery file in Linux has permissions that control who can read, write, or execute it.
Run ls -l and you'll see something like: -rw-r--r--
- = file, d = directorychmod +x script.sh — make a file executablechmod 755 script.sh — owner: rwx, group: r-x, others: r-xchmod 644 file.txt — owner: rw-, group: r--, others: r--A script file deploy.sh exists but is not executable. Make it executable so it can be run, then verify by listing it with ls -l deploy.sh. The output should show an x in the permissions.
Loading terminal engine...
This may take a moment on first load