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.

21 lines
489 B

  1. #!/bin/bash
  2. if [ $# -lt 1 ]; then
  3. echo "missing json filename"
  4. exit 1
  5. fi
  6. OUTPUT=`vm/Main0.hs -f $1`
  7. if [ $? -eq 0 ]; then
  8. read -p "Are you sure? [y/n]" -n 1 -r
  9. echo
  10. if [[ $REPLY =~ ^[Yy]$ ]]; then
  11. echo "submitting solution"
  12. exit 1
  13. curl --user :2aaFCkjNIDHAsAIh9iQHc+Y+FGhkM5Z0RQgpO6TL6EA= -X POST -H "Content-Type: application/json" \
  14. -d $OUTPUT \
  15. https://davar.icfpcontest.org/teams/235/solutions
  16. else
  17. echo "abort submission"
  18. fi
  19. else
  20. echo "error in vm execution"
  21. fi