mirror of
https://github.com/eddyem/phisics_gak.git
synced 2026-01-31 20:35:09 +03:00
7 lines
102 B
Bash
Executable File
7 lines
102 B
Bash
Executable File
#!/bin/sh
|
|
ext=`ext $1`
|
|
name=`echo $1|sed "s/.$ext//"`
|
|
convert $1 $name.eps
|
|
convert $1 $name.jpg
|
|
rm $1
|