aDdEd mY sponGe SCRiPT lOL

This commit is contained in:
Some guy named Michael 2023-07-26 09:38:44 -04:00
parent 8460da569c
commit d047373d87

18
bash/sponge Executable file
View File

@ -0,0 +1,18 @@
#!/bin/bash
echo -e "\nspongifying $@...\n\n"
str="$@"
lstr="${str,,}"
ustr="${str^^}"
# https://stackoverflow.com/a/10552175
for (( c=0; c<${#str}; c++ )); do
# https://stackoverflow.com/a/1195035
if [[ $((1 + $RANDOM % 10)) < 5 ]]; then
echo -n "${lstr:$c:1}"
else
echo -n "${ustr:$c:1}"
fi
done
echo; echo