我正在尝试在 android 上运行以下简单的 shell 脚本:
#!/system/bin/sh
echo "Hello World!"
我将文件命名为“ test ”,并将其放在“ /system/bin/ ”中。我将权限更改为755,将组更改为shell ..
现在当我尝试运行 script:test
时,它显示:
sh: test: No such file or directory
我可以在那里看到文件,当我运行bash test
或sh test
它工作时..
问题是什么 ?