14 lines
249 B
Bash
14 lines
249 B
Bash
#!/bin/ksh
|
|
#
|
|
# ./netscape.exe /print$name
|
|
SpoolPath="c:/tmprpts/spool"
|
|
NETSCAPE="prnetscape.cmd"
|
|
for nomLP in `ls $SpoolPath`
|
|
do
|
|
for html in `ls $SpoolPath/$nomLP/*.html`
|
|
do
|
|
$NETSCAPE "file://"$html
|
|
rm $html
|
|
done
|
|
done
|