9 lines
116 B
Bash
9 lines
116 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for a in `ls *.gif`
|
||
|
do
|
||
|
nombre=`echo $a | cut -f 1 -d "." `
|
||
|
convert $nombre.gif $nombre.png
|
||
|
done
|
||
|
|