6 lines
159 B
Bash
Executable File
6 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
|
|
touch /tmp/CGAL-test-`whoami`
|
|
SSH_AUTH_SOCK="" scp /tmp/CGAL-test-`whoami` cgaltest@cgal.geometryfactory.com:incoming
|
|
rm -f /tmp/CGAL-test-`whoami`
|