mirror of
https://git.davidovski.xyz/dot.git
synced 2026-06-15 01:56:43 +00:00
9 lines
189 B
Bash
Executable file
9 lines
189 B
Bash
Executable file
#!/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
|
|
|