This repository has been archived on 2022-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/scripts/.local/bin/ouli

14 lines
375 B
Plaintext
Raw Normal View History

2021-01-26 16:33:04 +00:00
#!/bin/sh
# damn that fifth glyph!
# shows if you put that glyph badly.
IFS=
echo "$@"
2021-01-26 16:43:10 +00:00
checks=$(echo "$@" | sed 's/[Ee𝚎𝖾Є𝕖⋳ᗴəᵉꗋ𝔼𝙴Ε𝘌Ɛ𝖤ƸꜪℇĘɛεЕꜫȨéèëêēẽÉÈÊËĒĔẼĖėĘęĚěЕе]/\^/g;s/[^\^]/ /g')
2021-01-26 16:33:04 +00:00
if [ -z $(echo $checks | sed -e 's/ //g') ]
then
echo "good"
else
2021-01-26 16:36:15 +00:00
echo $checks
2021-01-26 16:33:04 +00:00
echo "bad"
fi