snapshot_inspection.bat 683 B

123456789101112131415161718192021222324252627282930
  1. rem Inspect snapshot
  2. rem Copyright 2008 Beman Dawes
  3. rem Distributed under the Boost Software License, Version 1.0.
  4. rem See http://www.boost.org/LICENSE_1_0.txt
  5. pushd posix\tools\inspect\build
  6. bjam
  7. popd
  8. echo inspect...
  9. pushd posix
  10. dist\bin\inspect >..\inspect.html
  11. popd
  12. echo Create ftp script...
  13. copy user.txt inspect.ftp
  14. echo dir >>inspect.ftp
  15. echo binary >>inspect.ftp
  16. echo put inspect.html >>inspect.ftp
  17. echo dir >>inspect.ftp
  18. echo mdelete inspect-snapshot.html >>inspect.ftp
  19. echo rename inspect.html inspect-snapshot.html >>inspect.ftp
  20. echo dir >>inspect.ftp
  21. echo bye >>inspect.ftp
  22. echo Run ftp script...
  23. ftp -n -i -s:inspect.ftp boost.cowic.de
  24. echo Inspect script complete
粤ICP备19079148号