6 lines
352 B
Bash
Executable File
6 lines
352 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "The configured transfer is quite slow, to use the faster option, use adb push."
|
|
echo "Example working for Pixel 7 Pro: adb push '/mnt/ntfs/samsung-1tb/Users/Allen/Music' '/sdcard/Documents/'"
|
|
rsync -r -t -v --progress -s --ignore-existing '/mnt/ntfs/samsung-1tb/Users/Allen/Music/' '/mnt/mtp/Internal shared storage/Documents/Music'
|