README.md (991B)
1 Have you ever wanted to run shell in a linux environment without any promises? 2 Maybe you have no idea what kind of POSIXish adjacent flavour of shell and 3 tools is available? Maybe the only thing that you can depend on is the linux 4 kernel? 5 6 I have just the thing for you! Introducing STABBISH (STatic Busy Box with 7 Included Shell script). "What is it?", you ask. It's simple. It's a static 8 busybox build with all the tools included. "Isn't this just what busybox-static 9 is on ubuntu?" you ask. Well yes, but it has one special power. You can append 10 a shell script of your choice to the end of the binary and the resulting file 11 will automatically execute that script using the static busybox when run. The 12 appended script can even be compressed using gzip, xz or bzip2. 13 14 Simply grab the [stabbish binary](https://ashymad.srht.site/stabbish), append your script using for example 15 `cat stabbish your_script.sh > your_script.exe` and voila! You just created 16 your first run-anywhere shell script.