summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author B. Watson2020-10-13 07:17:37 +0200
committer Willy Sudiarto Raharjo2020-10-17 04:39:39 +0200
commit1835f38271ec4b326a0445673facc48b7c343395 (patch)
treef1ae8adfa1ebc65aef0ee304c5613b5398dc3246 /development
parent5a3e439f19e36c7350b1391af7e9e13025a3cd52 (diff)
downloadslackbuilds-1835f38271ec4b326a0445673facc48b7c343395.tar.gz
development/shc: Fix README.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/shc/README23
1 files changed, 12 insertions, 11 deletions
diff --git a/development/shc/README b/development/shc/README
index be04109cc4..560ad6f8c8 100644
--- a/development/shc/README
+++ b/development/shc/README
@@ -1,15 +1,16 @@
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.