Skip to content

Instantly share code, notes, and snippets.

@akkijp
Created March 4, 2016 09:37
Show Gist options
  • Save akkijp/1eaa88ebe136e15bbabb to your computer and use it in GitHub Desktop.
Save akkijp/1eaa88ebe136e15bbabb to your computer and use it in GitHub Desktop.
android-backup
formatted_date () {
date "+%Y%m%d%H%M"
}
zip_file_name=LINE_Backup_`formatted_date`.zip
adb -s CB5A25CFNW pull /sdcard/LINE_Backup/ /tmp/LINE_Backup/ && \
zip -r /tmp/$zip_file_name /tmp/LINE_Backup && \
mv /tmp/$zip_file_name /Users/YOUR_HOME_DIR/Dropbox/40-Archive/LINE_Backup/
# mv /tmp/$zip_file_name /Users/YOUR_HOME_DIR/Desktop/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment