Comment on mv *.jpg is complete bullshit.

<- View Parent
FigMcLargeHuge@sh.itjust.works ⁨7⁩ ⁨months⁩ ago

When I run into situations like this, I use the commands that work to write out a script. Eg, in your case the wildcard isn’t working with the mv command, so do something like this:

ls -1 *.jpg | awk ‘{print “mv "“$1”" /mnt/example/Pictures”}’ > /tmp/movefiles.sh

Then check the movefiles.sh and make sure it has all of the commands and files properly stated, make that executable, and then run that.

source
Sort:hotnewtop