openatx / adbutils

pure python adb library for google adb service.
MIT License
761 stars 175 forks source link

Shell session? #140

Open kulothunganug opened 1 month ago

kulothunganug commented 1 month ago

While it is possible to send commands and get output using the shell method as demonstrated in the adbutils GitHub repository, I want to start a session.

I find it annoying when I try the following:

  1. Running ls shows all files and directories in the current working directory (cwd).
  2. However, when I do cd somedir and then run ls again, it still lists the contents of the old directory.

Is there a way to persist the state across multiple shell call?

By the way, the project is really helpful and well documented, thanks for that ❤️