1
0
Fork 0
dotfiles/bin/chmod-help

15 lines
404 B
Plaintext
Raw Permalink Normal View History

2013-05-23 09:17:40 +00:00
#!/bin/bash
2013-03-13 13:37:21 +00:00
2013-05-23 09:17:40 +00:00
echo "\
2013-03-13 13:37:21 +00:00
+---+-----+-------------------------+
| 0 | --- | no access |
| 1 | --x | only execute |
| 2 | -w- | only write |
| 3 | -wx | write and execute |
| 4 | r-- | only read |
| 5 | r-x | read and execute |
| 6 | rw- | read and write |
| 7 | rwx | read, write and execute |
+---+-----+-------------------------+\
2013-04-25 16:23:31 +00:00
"