about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorvitali <vitali.samurov@live.com>2018-11-26 21:28:48 +0200
committervitali <vitali.samurov@live.com>2018-11-26 21:28:48 +0200
commita992570790e074283ef132f87e8c6145f027cd6a (patch)
tree85f544338aec6600445d3eff8c808f212afbbf43
parent440b001ad15b737f49521fe307796c6e89d2d140 (diff)
downloadbase64-a992570790e074283ef132f87e8c6145f027cd6a.tar.gz
Linux shell build script added
-rwxr-xr-xbuildrun.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/buildrun.sh b/buildrun.sh
new file mode 100755
index 0000000..ef40233
--- /dev/null
+++ b/buildrun.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+{ set +x; } 2>/dev/null
+mkdir bin 2>/dev/null
+clear
+echo compiling...
+gcc test.c base64.c -o bin/test
+gcc b64f.c base64.c -s -o bin/b64f
+echo running...
+bin/test
+echo
+echo Encoding test image "picture.png" to "picture.b64.txt"...
+bin/b64f e picture.png picture.b64.txt
+echo
+echo Decoding test image from "picture.b64.txt" to "picture.b64.png"...
+bin/b64f d picture.b64.txt picture.b64.png
+echo Done.
+echo See files manually if the programmed works correctly.
+
+
+
+