builddocs 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #!/bin/sh
  2. # =======================================================
  3. #
  4. # catches the usage information of all tools which is
  5. # printed on USAGE_OUT into file tooldocs.txt
  6. #
  7. # =======================================================
  8. echo "#############################################################################" > tooldocs.txt
  9. echo "SHORT USAGE INFORMATION of included PCTOOLS " >> tooldocs.txt
  10. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  11. echo "NOTE: tooldocs.txt will be automatically generated by calling each tool " >> tooldocs.txt
  12. echo " without any commandline parameter. " >> tooldocs.txt
  13. echo " Don't modify this document by hand. You will loose your changes " >> tooldocs.txt
  14. echo " when builddocs(.bat) will be run again " >> tooldocs.txt
  15. echo "#############################################################################" >> tooldocs.txt
  16. bin/ttarchive >> tooldocs.txt
  17. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  18. bin/ttbin2str >> tooldocs.txt
  19. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  20. bin/ttbin2hex >> tooldocs.txt
  21. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  22. bin/ttbin2oth >> tooldocs.txt
  23. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  24. bin/ttbin2bin >> tooldocs.txt
  25. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  26. bin/ttchecksum >> tooldocs.txt
  27. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  28. bin/ttdos2ebk >> tooldocs.txt
  29. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  30. bin/ttebkgen >> tooldocs.txt
  31. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  32. bin/ttextract >> tooldocs.txt
  33. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  34. bin/ttinfo >> tooldocs.txt
  35. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  36. bin/ttpack >> tooldocs.txt
  37. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  38. bin/ttppggen >> tooldocs.txt
  39. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  40. bin/ttsetname >> tooldocs.txt
  41. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  42. bin/ttsplit >> tooldocs.txt
  43. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  44. bin/ttstrip >> tooldocs.txt
  45. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  46. bin/tttiler >> tooldocs.txt
  47. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  48. bin/ttunarchive >> tooldocs.txt
  49. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  50. bin/ttunebk >> tooldocs.txt
  51. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  52. bin/ttunpack >> tooldocs.txt
  53. echo "-----------------------------------------------------------------------------" >> tooldocs.txt
  54. echo tooldocs.txt generated.