about summary refs log tree commit diff stats
path: root/buildrun.sh
diff options
context:
space:
mode:
authorFulton Browne <git@fulton.software>2021-05-15 21:16:20 +0000
committerFulton Browne <git@fulton.software>2021-05-15 21:16:20 +0000
commita7354ac7c6e4ddcf36e3d60851c98caa4e2d7dc1 (patch)
treed886bc906c3d3b5797fc62e694cb3b76fa0add73 /buildrun.sh
parent2e82773e3f043ce07469425225185fb17def312c (diff)
downloadbase64-a7354ac7c6e4ddcf36e3d60851c98caa4e2d7dc1.tar.gz
added plan9 encode
Diffstat (limited to 'buildrun.sh')
-rwxr-xr-xbuildrun.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/buildrun.sh b/buildrun.sh
deleted file mode 100755
index 4394f1e..0000000
--- a/buildrun.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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 ----------------[ Testing file - encoding/decoding ]----------------
-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 Check the files manually to see if the program works correctly.
-
-
-
-