星火微课系统客户端
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.

dumphint.bat 371B

12345678910111213141516171819202122
  1. @echo off
  2. @rem $Id: dumphint.bat 6300 2005-12-28 19:56:24Z giles $
  3. @rem Linearized PDF hint formatting utility.
  4. if %1/==/ goto usage
  5. call gssetgs.bat
  6. echo -q -dNODISPLAY -dSAFER -dDELAYSAFER >_.at
  7. :cp
  8. if %2/==/ goto doit
  9. echo %2 >>_.at
  10. shift
  11. goto cp
  12. :doit
  13. %GSC% -q @_.at -- dumphint.ps %1
  14. if exist _.at erase _.at
  15. goto end
  16. :usage
  17. echo Usage: dumphint input.pdf
  18. :end