This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
software:inkscape_scripts [2016/05/08 01:26] – admin | software:inkscape_scripts [2016/05/11 21:47] (current) – admin | ||
---|---|---|---|
Line 41: | Line 41: | ||
if [ -d ${INPD}${SFX} ] | if [ -d ${INPD}${SFX} ] | ||
then | then | ||
- | cd ${INPD}${SFX} || exit 1 | + | |
rm -f ${SLCT} | rm -f ${SLCT} | ||
- | cd ${INPD} | + | |
- | for f in ${INPD}${SLCT} | + | for f in ${INPD}${SLCT} |
- | do | + | do |
- | TMP=$(basename $f) | + | TMP=$(basename $f) |
- | DNM=$(dirname $f) | + | DNM=$(dirname $f) |
- | | + | NF=${TMP%.*}_${SFX}${SLCT#" |
- | echo " | + | echo " |
- | cp ${f} " | + | cp ${f} " |
- | # Extract the remaining part after the first occurrence of ' | + | |
- | # then extract the part between double quotes after ' | + | # then extract the part between double quotes after ' |
- | idt=$(sed ' | + | idt=$(sed ' |
- | if [ -n " | + | if [ -n " |
- | echo " | + | echo " |
- | CMND=" --select=$idt --verb EditSelectSameObjectType --verb ObjectToPath" | + | CMND=" --select=$idt --verb EditSelectSameObjectType --verb ObjectToPath" |
- | else | + | else |
- | echo " | + | echo " |
- | fi | + | fi |
- | echo -n " | + | |
- | # Copy the svg file into variable | + | # Copy the svg file into variable |
- | svg=" | + | svg=" |
- | # Strip everything until after the first appearance of '< | + | |
- | svg=" | + | # grep $svg first to prevent the subsequent substring removal to freeze |
- | + | # in case of embedded images in svg files. | |
- | # As long as the string is not empty, analyse the current ' | + | svg=$(echo $svg | grep -oP '< |
- | # When analysed, strip everything until after the first appearance of '< | + | svg=" |
- | # If there is no remaining '< | + | |
- | # continue processing. | + | # As long as the string is not empty, analyse the current ' |
- | while [ -n " | + | # When analysed, strip everything until after the first appearance of '< |
- | # $svg starts with <path, then chop off to be shortest /> | + | # If there is no remaining '< |
- | # http:// | + | # continue processing. |
- | pid=${svg%%/> | + | while [ -n " |
- | # if the string contains sodipodi and the stroke-dasharray: | + | # $svg starts with <path, then chop off to be shortest /> |
- | # extract the part between double quotes after ' | + | # http:// |
- | mln=$(echo $pid | grep sodipodi | grep -E " | + | pid=${svg%%/> |
- | if [ -n " | + | # if the string contains sodipodi and the stroke-dasharray: |
- | CMND=" | + | # extract the part between double quotes after ' |
- | echo -n " | + | mln=$(echo $pid | grep sodipodi | grep -E " |
- | else | + | if [ -n " |
- | echo -n " | + | CMND=" |
- | fi | + | echo -n " |
- | + | else | |
- | # check if $svg still contains '< | + | echo -n " |
- | if [[ $svg == *"< | + | fi |
- | svg=" | + | |
- | else | + | # check if $svg still contains '< |
- | svg="" | + | if [[ $svg == *"< |
- | fi | + | # Strip everything until after the first appearance of '< |
- | done | + | # grep $svg first to prevent the subsequent substring removal to freeze |
+ | # in case of embedded images in svg files. | ||
+ | svg=$(echo $svg | grep -oP '< | ||
+ | | ||
+ | else | ||
+ | svg="" | ||
+ | fi | ||
+ | done | ||
- | if [ -n " | + | |
- | echo -e -n " | + | echo -e -n " |
- | / | + | / |
- | echo " finished." | + | echo " finished." |
- | else | + | else |
- | echo -e -n " | + | echo -e -n " |
- | fi | + | fi |
- | / | + | / |
- | FILES=" | + | FILES=" |
- | done | + | done |
- | echo "Merging | + | echo -n "Creating ${INPD}${OUTF}, |
- | / | + | /usr/bin/gs -dBATCH -sPAPERSIZE=a4 -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=${INPD}${OUTF} $FILES |
- | rm $FILES | + | rm $FILES |
+ | echo " done." | ||
else | else | ||
- | echo -e " | + | |
fi | fi | ||
</ | </ |