custom_motd.sh 542 B

123456789101112131415
  1. #!/bin/sh
  2. echo "$(tput setaf 4)"
  3. echo "Welcome to the FrameworkBenchmarks project!"
  4. echo ""
  5. echo " To get started, perhaps try this:"
  6. echo " \$ cd FrameworkBenchmarks"
  7. echo " \$ toolset/run-tests.py --install server --test go"
  8. echo " \$ cat results/latest/logs/go/out.txt"
  9. echo ""
  10. echo " You can get lots of help:"
  11. echo " \$ toolset/run-tests.py --help"
  12. echo ""
  13. echo " This Vagrant environment is already setup and ready to go, so you"
  14. printf " can safely ignore any flags about users, hosts, or identity files $(tput sgr 0)"