You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
320 B
19 lines
320 B
2 years ago
|
#!/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
|