How to run BASH script in my Android?

后端 未结 5 1496

My same BASH script is working in Fedora/CentOS.

But I am testing one Android eee pad transformer. \"e

相关标签:
5条回答
  • 2021-01-31 11:09

    You can install Busybox, which provides you with many utilities such as awk, file, etc... and Terminal Emulator.

    1. Create a shell file with #!/system/bin/sh as the first line (shebang)
    2. Now place the completed script under /system/xbin or /system/bin and run it from the Terminal Emulator

    The information is an excerpt from this article : HOW TO RUN SHELL SCRIPTS ON ANDROID DEVICES

    0 讨论(0)
  • 2021-01-31 11:14

    Most Android devices don't have a bash interpreter installed. If you really need to run the script across Linux and Android, you could try using BusyBox but that will require rooting your device (and potentially voiding your warranty). Even then though, I don't know if the ifconfig utility is included in BusyBox.

    I would strongly recommend using the Android SDK to write an app to do whatever your trying to accomplish.

    0 讨论(0)
  • 2021-01-31 11:15

    in Android the shell is located in /system/bin/sh not /bin/sh like it is on most Unix-like systems. So even if you change #!/bin/bash to #!/bin/sh it will still not work. you'll have to use #!/system/bin/sh

    Android is not a GNU/Linux distribution so you can't expect that all scripts that run on GNU/Linux to also work on Android.

    0 讨论(0)
  • 2021-01-31 11:16

    As was stated, the Android OS (up to and including 4.0) does not include the BASH interpreter (just shell). While BusyBox is a great tool, I believe it's only a single executable that combines stripped-down-functionality-for-size versions of common UNIX utilities, but doesn't actually include the BASH interpreter.

    For an Android compiled version of the BASH interpreter, refer to this Forum thread: http://forum.xda-developers.com/showthread.php?t=537827

    0 讨论(0)
  • 2021-01-31 11:25

    May be it will work when calling interpreter with a script?

    $ bash ./test.sh
    

    I saw, that although it is specified #!/bin/bash error was posted by sh - may be it do wrong.

    UPD

    $ sh ./test.sh
    
    0 讨论(0)
提交回复
热议问题