mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
8 lines
270 B
Bash
Executable file
8 lines
270 B
Bash
Executable file
#!/bin/bash
|
|
# convert gif to png - dir recursive
|
|
|
|
# scharf !!!!
|
|
#for i in `find . -iname '*.gif'`; do bn=.$(echo $i | cut -f2 -d'.'); convert $bn.gif $bn.png; rm $bn.gif; done
|
|
|
|
# test:
|
|
#for i in `find . -iname '*.gif'`; do bn=.$(echo $i | cut -f2 -d'.'); echo $bn; done
|