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