Quote:
Originally Posted by cscat
What I want is to run my custom scripts with bash instead of busybox... What should I do for this? just make a symbolic link from this bash to /bin/bash (which already exists and is a symbolic link to busybox)?
Edit: I did the above thing and then ran this code just to check I'm actually using bash not busybox.
test.sh
Code:
#!/bin/bash
history
but no luck!
|
Just point your custom scripts at YOUR bash:
#!/mnt/us/bin/bash
Or feed them to bash:
/mnt/us/bin/bash myscript.sh
That way they will run in bash even if you launch them from a busybox shell (no need to start a bash shell).