Last active
August 2, 2018 03:22
-
-
Save unex/d41d5af453d0498ef01078d0ebcc01a2 to your computer and use it in GitHub Desktop.
MOTD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# change 15 to the seed you like | |
figlet -f smslant $(hostname) | /usr/games/lolcat -f -S 15 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
sudo apt install update-motd figlet lolcat | |
``` | |
## logo | |
show 100 seed possibilities | |
``` | |
for i in $(seq 1 100); do echo $i; figlet -f smslant $(hostname) | /usr/games/lolcat -f -S $i; done | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment