mirror of
https://git.davidovski.xyz/dot.git
synced 2024-08-15 00:43:28 +00:00
10 lines
189 B
Text
10 lines
189 B
Text
|
#!/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
|
||
|
|