Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corrected a typo (from rw- to r--) #149

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion book/2e/04.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ The first character *`-`* (hyphen) indicates the file type.
A *`-`* means regular file and a *`d`* means directory.
The next three characters, *`rwx`*, indicate the access permissions for the user who owns the file.
The *`r`* and *`w`* mean *read* and *write*, respectively.
(As you can see, *top-words-1.sh* has a *`-`* instead of an *`x`*, which means that we cannot *execute* that file.) The next three characters *`rw-`* indicate the access permissions for all members of the group that owns the file.
(As you can see, *top-words-1.sh* has a *`-`* instead of an *`x`*, which means that we cannot *execute* that file.) The next three characters *`r--`* indicate the access permissions for all members of the group that owns the file.
Finally, the last three characters in the column, *`r--`*, indicate access permissions for all other users.

Now you can execute the file as follows:
Expand Down