Skip to content

Instantly share code, notes, and snippets.

@rjack
Last active November 8, 2015 13:36
Show Gist options
  • Save rjack/4d72a13b842ed92e8d77 to your computer and use it in GitHub Desktop.
Save rjack/4d72a13b842ed92e8d77 to your computer and use it in GitHub Desktop.
adb-push-music
#!/usr/bin/env bash
target="/storage/sdcard1/Music"
for dir in "$@";
do
base=$(basename "$dir")
adb push -p "$dir" "$target/$base"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment