01 / 07
Add the one character that is missing
In the last lesson you worked out why run.sh will not run.
-rw-r--r-- run.sh ^ this one is a -The owner's third character, the execute mark, is missing. So put it there.
chmod u+x run.shThat makes it run. You read it straight off: u (the owner) + (add) x (execute).
Reading like an English sentence is the nice thing about writing it in symbols.