You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have a file which name contains backtick (`), then I can't open this file. For example I have file /storage/0403-0201/E`kzamen, then adbfs will print the following error:
--*-- exec_command: adb shell "ls -l -a -d '/storage/0403-0201/E`kzamen'" 2>&1
sh: -c: line 0: unexpected EOF while looking for matching ``'
sh: -c: line 1: syntax error: unexpected end of file
The solution would be to escape backtick, so the command becomes adb shell "ls -l -a -d '/storage/0403-0201/E\`kzamen'"
The text was updated successfully, but these errors were encountered:
If I have a file which name contains backtick (
`
), then I can't open this file. For example I have file/storage/0403-0201/E`kzamen
, then adbfs will print the following error:The solution would be to escape backtick, so the command becomes
adb shell "ls -l -a -d '/storage/0403-0201/E\`kzamen'"
The text was updated successfully, but these errors were encountered: