@quarrel4you@piefed.social
quarrel4you
member since 26 Feb 2026 04:11
comments
- on It's all about those little file mode bits in c/linuxmemes@lemmy.world · 10 Sep 2026
-
on It's all about those little file mode bits in c/linuxmemes@lemmy.world · 10 Sep 2026
Careful:
chmod -Xalso looks for any existing exec bits:$ umask 0 $ >foo >bar $ ls -al foo bar -rw-rw-rw- 1 user group 0 Sep 10 00:00 bar -rw-rw-rw- 1 user group 0 Sep 10 00:00 foo $ chmod o+x foo $ ls -al foo bar -rw-rw-rw- 1 user group 0 Sep 10 00:00 bar -rw-rw-rwx 1 user group 0 Sep 10 00:00 foo $ chmod u=rwX,g=rX,o=rX foo bar $ ls -al foo bar -rw-r--r-- 1 user group 0 Sep 10 00:00 bar -rwxr-xr-x 1 user group 0 Sep 10 00:00 foo -
on [Discussion] Why do anime car animations tend to be ass? in c/anime@ani.social · 6 Sep 2026
If you want to ruin someone’s enjoyment of anime point out the horses!
You can actually do
chmod +777,u+rwx,go-w footo make the logic easier if you want to force a starting assumption.