Created
December 18, 2010 23:31
-
-
Save codingisacopingstrategy/746968 to your computer and use it in GitHub Desktop.
Trying to change the permission of a folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
computer-van-eric-schrijver:~ eric$ chmod 755 -r FDK | |
chmod: -r: No such file or directory | |
computer-van-eric-schrijver:~ eric$ chmod -r 755 FDK | |
chmod: 755: No such file or directory | |
computer-van-eric-schrijver:~ eric$ chmod FDK -r 755 | |
chmod: Invalid file mode: FDK | |
computer-van-eric-schrijver:~ eric$ chmod 755 FDK -r | |
chmod: -r: No such file or directory | |
computer-van-eric-schrijver:~ eric$ chmod 755 FDK -R | |
chmod: -R: No such file or directory | |
computer-van-eric-schrijver:~ eric$ chmod -R 755 FDK | |
computer-van-eric-schrijver:~ eric$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment