11 lines
327 B
Bash
Executable File
11 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rsync -az --progress --delete /data/music/flac/ thrakkorzog:/home/luket/flac
|
|
ssh -tt thrakkorzog 'cd /home/luket/git/library_works && ./encode_all'
|
|
if [[ "$?" == 0 ]]; then
|
|
rsync -az --progress --delete thrakkorzog:/home/luket/opus/ /data/music/opus
|
|
else
|
|
printf 'Something went wrong in SSH\n' >&2
|
|
exit 1
|
|
fi
|