On my desktop ubuntu host if I run a script with only the line
echo $SHELL
it prints
/bin/bash
But on a different host running busybox, if I do the same thing I get
/bin/sh
printed
And I have noticed that if I create scripts on my ubuntu box and run them on the busybox host then sometimes I get different behavior.
What I would like to do is create a shortcut on my ubuntu desktop to some terminal session that would run the Bourne Shell, /bin/sh, rather than the Bourne Again Shell, bash. Is that possible or is my thinking about this wrong?