publish 267 B

1234567
  1. #!/usr/bin/env bash
  2. set -e
  3. echo "Will copy content of the 'output' directory to the 'public' directory on t3.unl.edu"
  4. scp -r output cfangmeier@t3.unl.edu:public
  5. echo "done"
  6. echo "files available at t3.unl.edu:8000/output/ (provided that the local server is running)"