-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrop_eps
10 lines (10 loc) · 1.61 KB
/
crop_eps
1
2
3
4
5
6
7
8
9
10
for file in $@; do
outfile="tmp_""$file"
ps2epsi $file $outfile 2>/dev/null
if test $? -ne 0;then
echo "ps2epsi $file $outfile failed "
else
rm -f $file
mv $outfile $file
fi
done