added scripts folder to gitea

This commit is contained in:
lucca
2026-06-11 13:47:48 -04:00
commit f8130bd7d0
91 changed files with 1868 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
BINARY="01001000 01100101 01101100 01101100 01101111"
binaryToText() {
while read line
do
echo -n "\x$(echo obase=16\;ibase=2\;$line | bc)"
done
}
echo $BINARY | binaryToText