this post was submitted on 20 Feb 2024
-1 points (46.2% liked)
Linux
2341 readers
50 users here now
Shit, just linux.
Use this community for anything related to linux for now, if it gets too huge maybe there will be some sort of meme/gaming/shitpost spinoff. Currently though… go nuts
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Can you run
printf %s\\n *.jpg
in that same directory and share the result? I'm really intrigued. If there's private information in there, I'd be satisfied with just a handful of lines showing the issue with private info replaced with ****sEdit: also run
alias mv
to check whether you have an alias messing things upbash: alias: mv: not found
printf %s\\n *.jpg
is just a list of filenames on newlines. There's 75,000 of them. You'll have to take my word for it.Fortunately, GenderNeutralBro's aside about using
./*
instead of*
works as expected. Could have been files beginning with_-
. None begin with-
, exactly.