Hi I need to run things in the form of adb shell <command>
When I test everything out inside adb shell, it works because I was able to set some aliases in .bashrc.
However, when I do adb shell <command>, nothing works because .bashrc is not used when you run adb shell <command>, because it's in the non-interactive mode. 
How can I work around this? Can I adb push some files to the filesystem so that the alias will be there when adb shell is run?
 
     
     
    