felt bored and was curious how long it would take me to implement fizzbuzz in shell. Apparently ~2min. ๐Ÿ˜†

$ i=0; while [ $((++i)) -le 30 ] ; do case 0 in $((i%15)) ) echo fizzbuzz;; $((i%3)) ) echo fizz;; $((i%5)) ) echo buzz ;; *) echo $i ; esac ; done

0

If you have a fediverse account, you can quote this note from your own instance. Search https://mastodon.bsd.cafe/users/gumnos/statuses/116114821284897836 on your instance and quote it. (Note that quoting is not supported in Mastodon.)