Hello
I'm novice and
I need to print the code between "convert" to next blank line
Please help me
Code:
+ f *.tif | f *.tiff | f *.TIF | f *.TIFF & t t
t convert to jpg
set %t
while [ -n "$1" ]; do
convert "$1" -quality 100 $(basename "$1").jpg
shift
done
+ f *.jpg | f *.JPG & t r
e Affiche l'EXIF de la photo
clear
exiv2 %f
printf 'Press [Enter] key to continue...'
read null
+ f *.pdf | f *.PDF & t t
p Transforme un fichier PDF sécurisé en normal
set %t
while [ -n "$1" ]; do
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile="$1.test.pdf" "$1"
shift
done
+ f *.eps | f *.EPS | f *.ai | f *.AI & t t
s Convertir Un fichier EPS,AI en SVG
set %t
while [ -n "$1" ]; do
pstoedit -f plot-svg $1 $1.svg
shift
done