Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
firusvg13788yNothing spectacular, but a few times a month it saves me up to 2-3hrs of work.
--- CUT HERE ---
#!/bin/sh
FILES=$(ls -1 *.png)
for f in $FILES
do
echo "Cropping $f"
mogrify -crop 1920x940+0+0 $f
done
--- CUT HERE --- -
tilde31728yI must point you to this rant which was posted earlier.
https://www.devrant.io/rants/329221 -
reirep2038y@tild3 I wasn't aware of this one, thanks for pointing this out :) My question wasn't exactly the script used by this dude but the most wtf / usefull script you've seen in your life so far :)
-
The most useful I use regularly is one that creates a bunch of linked clones of a virtualbox vm, and automatically sets the network all the network settings, creating internal networks and connecting each machine to the ones specified by a configuration file. It saves me a lot of time when I have to test networking stuff
-
Let's say a batch script I made saved work for me in my old school. I let it execute quietly and it opened three instances of itself again, then quit. Then I would open it whenever I wanted to and boom, didn't have to do tasks when we are in the computer room.
-
Wow, I just re-read my last comment. It's like a punch in the face to every grammar rule ever made
-
firusvg13788y@ocab19 Is English your mother tongue?
No? No problem.
Yes? No problem if others can understand. -
firusvg13788y@Duckman But, idiom "mother tongue" is legit in English?! I don't see problem (t)here?!
P.S. In my language, Serbian, it is the same - "maternji jezik" is "mother tongue". N.B. In Serbian "jezik" is homonym, it means both "tongue" and "language".
Related Rants
What's your funnier / most time saving script that you've ever made ?
undefined
iliketags
script
customw