mirror of
https://github.com/eddyem/phisics_gak.git
synced 2025-12-06 02:25:13 +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
|