mktable 451 B

1234567891011121314151617181920
  1. # Creates a table of all keywords defined the in the help files.
  2. pushd $reduce/doc/help
  3. grep '***** To' *.tex
  4. grep '\begin{Command}' *.tex
  5. grep '\begin{Operator}' *.tex
  6. grep '\begin{Switch}' *.tex
  7. grep '\begin{Variable}' *.tex
  8. grep '\begin{Declaration}' *.tex
  9. grep '\begin{Package}' *.tex
  10. grep '\begin{Concept}' *.tex
  11. grep '\begin{Constant}' *.tex
  12. grep '\begin{Type}' *.tex
  13. grep '\begin{INFO}' *.tex
  14. grep '\section' *.tex
  15. popd