Please enable JavaScript in your browser!
Home
Explore
Help
Sign In
wigust
/
dotfiles
Watch
2
Star
1
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
3a6ed2cdb7
Branches
Tags
master
dotfiles
/
dot_local
/
bin
/
executable_wi-image-rotate.sh
executable_wi-image-rotate.sh
73 B
History
Raw
1
2
3
4
5
6
7
#!/bin/sh
for file in *
do
convert "$file" -rotate 180 "$file"
done