mordred

joined 1 year ago
[โ€“] [email protected] 79 points 11 months ago (5 children)

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.

[โ€“] [email protected] 7 points 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