mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-10 09:03:06 +08:00
16 lines
234 B
Bash
Executable file
16 lines
234 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# convert -loop 0 -delay 100 in1.png in2.png out.gif
|
|
|
|
export FFF=`ls *.png | while read F
|
|
do
|
|
echo "${F}"
|
|
done`
|
|
|
|
# delay: 100 > 75
|
|
export CCC="convert -loop 0 -delay 75 ${FFF} hstr-v2.gif"
|
|
|
|
#echo ${CCC};
|
|
${CCC}
|
|
|
|
# eof
|