|
sh2binThis utility allow to hide almost every Bash script into an executable binary file! Whole Bash script is encrypted so any it's secret codes will not be readable by binary editors even. In addition the output executable binary file is quite small. Linux/UNIX administrator appreciates usability of it in many situations.Micro manualRequirements 1. g++ command (from GNU GCC) accessible thru PATH user environment variable 2. Bash shell configured as default user system shell. Installation Download program tarball to disk and check it's hash sum.
Usage Enter to sh2bin directory and type command: ./sh2bin script where 'script' is name of the file with your Bash script. This create bin file - executable binary file in sh2bin directory, then rename bin file and run it as you want. Important notes Sometimes there may be a problem depend on not properly reading Bash $0 parameter. So change $0 words to predefined $ZER0 variable (which is identical to argv[0]) in your script as needed! Nonetheless don't forget that $0 Bash parameter is not the same as argv[0] in C++ programming language! License The license for this program and downloadable package is free of charge for non commercial targets only! More informations are included in downloadable tarball. Links GNU GCC home page: gcc.gnu.org GNU Bash home page: www.gnu.org/software/bash ∗∗∗ |