Run shellscript on a mobile android [closed]

6

Does anyone know if there is a default app that reads shellscript on mobile android? Has anyone tried to do something like this?

    
asked by anonymous 16.05.2014 / 19:14

1 answer

0

By what I understand, what you want is to perform reading shell script files on android and this you can do as if you were on your pc. You can write all the routine you want in the script and then run it, eg:

$ sh ./seu_script.sh

To know the bash path use

$ find / -name "bash"

or

$ which bash
    
16.09.2014 / 16:23