inspect.sh 640 B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. # Inspect snapshot
  3. # © Copyright 2008 Beman Dawes
  4. # Distributed under the Boost Software License, Version 1.0. 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. # create the ftp script
  13. echo "dir" >inspect.ftp
  14. echo "binary" >>inspect.ftp
  15. echo "put inspect.html" >>inspect.ftp
  16. echo "delete inspect-snapshot.html" >>inspect.ftp
  17. echo "rename inspect.html inspect-snapshot.html" >>inspect.ftp
  18. echo "dir" >>inspect.ftp
  19. echo "bye" >>inspect.ftp
  20. # use cygwin ftp rather than Windows ftp
  21. /usr/bin/ftp -v -i boost.cowic.de <inspect.ftp
粤ICP备19079148号