mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-22 12:59:21 +02:00
Debugged and cleaned up schps2pdf.
- scripts/schps2pdf: don't need to export i (reported by Wolfgang Spraul) - scripts/schps2pdf: removed dysfunctional (and incorrect, if it had worked) second increment of i - scripts/schps2pdf: simplified quoting of the -sOutputFile argument - scripts/schps2pdf: \$$i needs curly braces to work for more than nine files
This commit is contained in:
parent
80c6f3e75f
commit
541dd04a77
@ -50,10 +50,10 @@ done
|
|||||||
in=${1:--}
|
in=${1:--}
|
||||||
shift
|
shift
|
||||||
|
|
||||||
eval gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=\""$out\"" -f \
|
eval gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=\"$out\" -f \
|
||||||
`export i=1; for n in "$in" "$@"; do \
|
`i=1; for n in "$in" "$@"; do \
|
||||||
i=\`expr $i + 1\`;
|
i=\`expr $i + 1\`;
|
||||||
echo "<(sheet=\"\`basename \"$n\" .ps\`\";
|
echo "<(sheet=\"\`basename \"$n\" .ps\`\";
|
||||||
set x $titles; i=\`expr $i + 1\`; eval t='\\$$i';
|
set x $titles; eval t='\\${$i}';
|
||||||
$toc && echo '[ /Title ('\"\\${t:-\\${sheet#$prefix}}\"') /OUT pdfmark';
|
$toc && echo '[ /Title ('\"\\${t:-\\${sheet#$prefix}}\"') /OUT pdfmark';
|
||||||
cat \"$n\";)"; done`
|
cat \"$n\";)"; done`
|
||||||
|
Loading…
Reference in New Issue
Block a user