Finally figured out how to enable basic job control(via Ctrl+D, Ctrl+C and Ctrl+Z) and reading /etc/profile in #Floppinux : run "sh -l -m".

This now enables me to try writing a crude but functional service manager for Floppinux in shell script.

@w84death I made a pull request on GitHub to change the /bin/sh command in /etc/init.d/rc to "/bin/sh -l -m" to enable job control and customization via /etc/profile system-wide. https://github.com/w84death/floppinux/pull/16
Updated sh invocation in /etc/init.d/rc by antoniusmisfit · Pull Request #16 · w84death/floppinux

Added -l and -m options to shell invocation in /etc/init.d/RC to enable basic job control and reading /etc/profile if it exists.

GitHub