From 03a60bb8d6bcb83a4d29f26438156697c32b934f Mon Sep 17 00:00:00 2001 From: Ari Bandong Date: Thu, 13 Jan 2022 13:37:40 -0700 Subject: [PATCH] Update TUTORIAL.md Fixed typo in line 110 where "questionnaire" had an extra "n'. --- TUTORIAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index d215e5b423..c0126ebe75 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -107,7 +107,7 @@ You should have got a permission denied message because you don't have permissio ### 90.1 -Next to your file is `-rw-r--r--`. All but the first character (`-`) describe permissions different users have with the file. `r` means `read`, `w` means `write`, `x` means `execute`. I don't see an `x` anywhere, so nobody can execute it. Enter `chmod +x questionnnaire.sh` in the terminal to give everyone executable permissions. +Next to your file is `-rw-r--r--`. All but the first character (`-`) describe permissions different users have with the file. `r` means `read`, `w` means `write`, `x` means `execute`. I don't see an `x` anywhere, so nobody can execute it. Enter `chmod +x questionnaire.sh` in the terminal to give everyone executable permissions. #### HINTS