I use Simple MTPFS to access the Android phone and rsync to sync the music files.
./mount_android.sh ~/Documents/temp/android
Trying to mount android to '/home/mat/Documents/temp/android'.
Could not retrieve device storage.
function createMatrix(x, y) { | |
matrix = new Array(y); | |
// Popula matriz | |
for (var i = matrix.length - 1; i >= 0; i--) { | |
matrix[i] = new Array(x) | |
} | |
return matrix; | |
} |
I use Simple MTPFS to access the Android phone and rsync to sync the music files.
./mount_android.sh ~/Documents/temp/android
Trying to mount android to '/home/mat/Documents/temp/android'.
Could not retrieve device storage.
""" | |
Recipe by Mateus Mercer ~ [email protected] | |
This code is released with the MIT license, if you | |
didn't got a copy, get a copy at https://opensource.org/licenses/MIT | |
12/2016 | |
""" |
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |