
You must log in or register to comment.
Right click -> Properties -> Permissions -> Allow executing file as program 😎
- 12 days
Yeah, not only does
+xleave read/write permissions untouched, it also only makes it executable for the user, not for everyone and their cat.
- 12 days
chmod 755for when setting permissions to directories.chmod +xfor making something executable right when I am about to run it. - 12 days
When I start fucking with chmod, it happens way too often that what I want to do only works after I executed
chmod 777…- quarrel4you@piefed.socialEnglish12 days
You can actually do
chmod +777,u+rwx,go-w footo make the logic easier if you want to force a starting assumption.
u=rwX,g=rX,o=rX because this won’t make every file executable, only folders.






