initial commit

This commit is contained in:
2021-08-08 21:11:22 +02:00
commit fe7136d801
130 changed files with 6858 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
[[ $# != 1 ]] && echo "usage: $0 string" && exit 1
str=$1
len=${#str}
rev=""
for (( i=0; i<len; ++i ))
do
rev="${str:i:1}$rev"
done
echo "$rev"