Skip to content

Instantly share code, notes, and snippets.

@codingisacopingstrategy
Created December 18, 2010 23:31
Show Gist options
  • Save codingisacopingstrategy/746968 to your computer and use it in GitHub Desktop.
Save codingisacopingstrategy/746968 to your computer and use it in GitHub Desktop.
Trying to change the permission of a folder
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