diff options
author | davidovski <david@davidovski.xyz> | 2021-10-09 22:20:41 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-09 22:20:41 +0100 |
commit | 01ced0b7ce47d279789efb2dc70d1cd009ac56ad (patch) | |
tree | 6ece604b8ae3476d2d70c9c9d42f86fe607990da /scripts/.scripts/sync-phone |
initial commit
Diffstat (limited to 'scripts/.scripts/sync-phone')
-rwxr-xr-x | scripts/.scripts/sync-phone | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/.scripts/sync-phone b/scripts/.scripts/sync-phone new file mode 100755 index 0000000..6347779 --- /dev/null +++ b/scripts/.scripts/sync-phone @@ -0,0 +1,9 @@ +#!/bin/sh +mkdir ~/phone +jmtpfs ~/phone +rsync -vr --ignore-existing ~/music/* ~/phone/SanDisk\ SD\ card/Music/ +echo "Synced files, Press enter to unmount" +read +umount ~/phone +rmdir ~/phone + |