mordred
@mordred@lemmy.world
This is a remote user, information on this page may be incomplete. View at Source ↗
- Comment on trash 11 months ago:
Implying it will survive a generation
- Comment on How Reddit Crushed the Internet's Largest Protest 11 months ago:
They can spin it that way all they want but personally I just left. Granted, I was mostly a lurker but I’m quite sure they lost many of them.
- Comment on WARNING: Lemmy Self-Hosters, There Have Been CSAM Attacks taking place against !lemmyshitpost@lemmy.world 1 year ago:
sudo find /srv/lemmy/example.com/volumes/pictrs/files -type f -ctime -1 -exec rm {} \;
- sudo: run as root
- find /srv/lemmy/example.com/volumes/pictrs/files -type f: find files (f) in directory
- -ctime -1: which have been created in the last day
- -exec rm {} ; execute the command rm (remove) on each of them