Jump in the discussion.

No email address required.

CONVERT ALL WEBP IN YOUR SYSTEM TO JPG WITH THIS ONELINER

mkdir /tmp/webp; find ~ -name *.webp  -exec cp {} /tmp/webp \;; for file in /tmp/webp/*; do  echo $file; convert $file $file.jpg; done; mkdir /tmp/jpg; cp /tmp/webp/*.jpg /tmp/jpg;
Jump in the discussion.

No email address required.

And now all my recently converted webp files are in a temp directory! Boy, I just love moving shit back to where it belongs! :marseylove:

:#marseyparty:

No, I will not edit your code to auto-convert and copy files to folders that I care about.

:#marseysmug2:

Jump in the discussion.

No email address required.

I apologize - I don't trust my skills enough to loop through my home directory and make changes to it

too easy to run some rf rf shit on accident

Jump in the discussion.

No email address required.

too easy to run some rf rf shit on accident

I'm shocked that there wasn't one hidden in there in purpose.

Jump in the discussion.

No email address required.

Link copied to clipboard
Action successful!
Error, please refresh the page and try again.