From android shell, is there a way I can edit a file?
In order to edit files like .rc and similar scripts, I am currently using adb pull to pull them, then edit them and then push them back adb push. This is certainly inefficient.
.rc
adb pull
adb push
Is there a way I can edit these files in android shell (like the vim editor in Linux shell)
I have root permissions on my device. So if necessary, I can install root applications.
You can create text files using:
adb shell $ cat > filename.txt
You can add lines to a text files using:
$ cat >> filename.txt
Both commands can be terminated using ctrl-D.
ctrl-D
1.4m articles
1.4m replys
5 comments
57.0k users