Figlet on RHEL


There is no figlet on rhel, but we can fix that:

dnf install -y python3-pip
python3 -m pip install --user pyfiglet
python3 -m pyfiglet "$(hostname)"

Previous