Surprised nobody commented on bb yet. This thing is really impressive - and I thought that mplayer -vo caca is jaw-dropping!
Fun at the Unix Terminal
31–40 of 56 posts
Re: Fun at the Unix Terminal
#32Earlier quoted context omitted.
Why would you even bother with that when `say` can take a string or read from stdin? Just use $ say $(fortune) or $ fortune | say -f- For bonus coolness, add "-i" (it prints the lines and highlights the current word during reading).
Because it's fun spawning a new process and watching the otherwise idle cores of your box reach 0.1% usage for a millisecond.
Re: Fun at the Unix Terminal
#33sl [0] is always my favorite. [0] https://github.com/mtoyoda/sl
Re: Fun at the Unix Terminal
#34I read through the whole thing with joy, and I am 20
Re: Fun at the Unix Terminal
#35> This is aimed at grade 6 students I read through the whole thing with joy, and I am 20
Re: Fun at the Unix Terminal
#36Re: Fun at the Unix Terminal
#37Does anyone have a place/site for browsing through new/popular utilities? I've been on Ubuntu for the last year and I love it, but reading this I just realised I don't have anywhere to browse or find things like this.
Re: Fun at the Unix Terminal
#38Instead of: $ fortune > my_fortune.txt $ say -f my_fortune.txt One could use the underrated (bashism) process substitution: $ say -f Which works wonders for e.g diff'ing live: $ diff
Why would you even bother with that when `say` can take a string or read from stdin? Just use $ say $(fortune) or $ fortune | say -f- For bonus coolness, add "-i" (it prints the lines and highlights the current word during reading).