5 lines
248 B
Bash
Executable file
5 lines
248 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
rsync --cvs-exclude --recursive --links --copy-links --filter=':- .gitignore' \
|
|
--verbose --human-readable --partial --progress \
|
|
"$PWD" "/home/cscherr/Documents/SVN/nt/BA/trunk/Studium/Christoph_Scherr/system/Implementation/"
|