Name: ¯\(ツ)/¯ 2012-09-12 1:38
while read time
do
if [[ $(grep -r ";_;" ~/*) == "" ]]
then
like=0
fi
done < <(cat this)
if [[ $like != "0" ]]
then like(this)
fi
sh is mediocre for programming, but excellent for interactive use. You deal with programs and files and glue them together. When control flow becomes even slightly complicated, you should reconsider whether to use another language or not.Display non-printing characters so they are visible. Control
characters print as `^X' for control-X; the delete character
(octal 0177) prints as `^?'. Non-ASCII characters (with the high
bit set) are printed as `M-' (for meta) followed by the character
for the low 7 bits.
echo -ne "\rIf it"{"'s"," ain't"}" [spoiler]blah[/spoiler], it"{"'s"," ain't"}" crap\n"
echo -ne "\rIf it"{"'s"," ain't"}"blah, it"{"'s"," ain't"}" crap\n"