script-linux/lol

8 lines
105 B
Plaintext
Raw Normal View History

2023-02-01 19:08:43 +01:00
#!/bin/bash
if [[ $1 = "" ]]; then
fortune | cowsay -f tux | lolcat
else
cowsay -f tux $1 | lolcat
fi