|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 500 (0x1f4) Types: TextFile Names: »vmshelp.csh«
└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89 └─⟦e0e3e8967⟧ »./gnuplot.tar.Z« └─⟦01af444b1⟧ └─⟦this⟧ »gnuplot/plotdoc/vmshelp.csh«
#! /bin/csh # # vmshelp.csh /usr/help/gnuplot/* > gnuplot.hlp # will convert the Unix help tree to VMS format, # then use $ LIB/HELP GNUPLOT GNUPLOT under VMS to create the VMS .HLB if (! $?level) then setenv level 0 endif @ leveltmp = ($level + 1) setenv level $leveltmp foreach i ($*) if (-f $i) then # plain file echo -n "$level " basename $i .hlp sed 's/^/ /' $i else if (-d $i) then # directory echo -n "$level " basename $i sed 's/^/ /' $i/.hlp # recurse! $0 $i/* endif end