You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
256 B
9 lines
256 B
15 years ago
|
for i in `find * -maxdepth 0 -type d`; do
|
||
|
cd $i
|
||
|
echo $i
|
||
|
LANG=de_DE meinproc --check index.docbook --stylesheet /opt/kde3/share/apps/ksgmltools2/customization/kde-nochunk.xsl
|
||
|
html2ps -D -u -n index.html >index.ps
|
||
|
ps2pdf index.ps ../kdiff3_$i.pdf
|
||
|
cd ..
|
||
|
done
|