diff options
author | Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com> | 2021-04-02 11:19:10 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-04-02 11:19:10 +0700 |
commit | 36017e3e7cce1a3e9a490c0bd3858302264bdc39 (patch) | |
tree | ef1c5a967051cb2aea42a243c8543e581d096830 /development/shc/README | |
parent | 5e635b5de19ce525d5bde07f9d129f1a2ebc5d69 (diff) |
development/shc: Updated for version 4.0.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/shc/README')
-rw-r--r-- | development/shc/README | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/development/shc/README b/development/shc/README index 560ad6f8c8b81..be04109cc4174 100644 --- a/development/shc/README +++ b/development/shc/README @@ -1,16 +1,15 @@ shc - Shell script compiler -SHC is a generic shell script compiler. It takes a script, which is -specified on the command line and produces C source code. The generated -source code is then compiled and linked to produce a stripped binary. +SHC is a generic shell script compiler. It takes a script, which is specified on +the command line and produces C source code. The generated source code is then +compiled and linked to produce a stripped binary. -The compiled binary will still be dependent on the shell specified in -the first line of the shell code (i.e shebang: #!/bin/sh or such), thus -shc does not create completely independent binaries. +The compiled binary will still be dependent on the shell specified in the first +line of the shell code (i.e shebang: #!/bin/sh or such), thus shc does not +create completely independent binaries. -shc itself is not a compiler such as cc, it rather encodes and encrypts -a shell script and generates C source code with the added expiration -capability. It then uses the system compiler to compile a stripped -binary which behaves exactly like the original script. Upon execution, -the compiled binary will decrypt and execute the code with the shells' --c option. +shc itself is not a compiler such as cc, it rather encodes and encrypts a shell +script and generates C source code with the added expiration capability. It then +uses the system compiler to compile a stripped binary which behaves exactly like +the original script. Upon execution, the compiled binary will decrypt and +execute the code with the shells' -c option. |