I want to retreive android database using run-as like in here, like this way :
adb shell
shell $ run-as com.example.package
shell $ chmod 666 databases/file
shell $ exit ## exit out of 'run-as'
shell $ cp /data/data/package.name/databases/file /sdcard/
shell $ run-as com.example.package
shell $ chmod 600 databases/file
adb pull /sdcard/file
but my database file has space like "my db", what kind of punctuation that I must used ?
/ or " " or ' ' or something else ?