Linux Class Notes 2
Linux Class Notes 2
****************
changes the permissions for files and directories
3 types of users
# primary
# group
# others
3 permissions for all users we have:
# read (r)
# write (w)
# execute (x)
2 ways we can give permissions:
1. symbolic or text method
2. using mode number
notations
u:user
g:group
o:other
+:add permission
-: remove permission
r:read
w:write
x:execute
what pipe?
pipe are used to redirect a stream from one program to another program.
the output of one command redirect it to the input of another "|" vertical bar
command1 | command2 | command3 |...
Miscellaneous Commands
----------------------