¡@

Home 

java Programming Glossary: testembed.sh

Embed a Executable Binary in a shell script

http://stackoverflow.com/questions/10491704/embed-a-executable-binary-in-a-shell-script

binary gcc hello.c o hello Now I have a shell script testEmbed.sh What I am asking is if it is possible to embed the binary hello.. binary hello inside the shell script so that when I run . testEmbed.sh it executes the binary to print Hello World . Clarification.. 0 pax gcc o hello hello.c Then create a shell script testEmbed.sh which will decode itself pax cat testEmbed.sh # bin bash rm..