Shell – How to print ‘block’ letters in the terminal

shellspecial charactersterminal

How do I echo/print block lettering in the terminal like:

enter image description here ?

figlet and toilet don't help. Neither do U+25A0 or U+2588 unicode characters.

This is not a duplicate. As I said, figlet, banner and toilet have no styles for what I want, as depicted in the image.

Best Answer

This is part of the output of the linuxlogo command, specifically part of the output of

linuxlogo -L gnu_linux
which in full looks like this screenshot from the Debian version:

Screenshots of the linuxlogo command

The logos are constructed from templates that accompany the command. This is the one for the gnu_linux logo. There are 30 logos in the original package. Debian adds a debian_banner_2 logo.

From reading these logo files, right there in the source trees, one can see how the several different forms of lettering in the various logos are constructed with ECMA-48 and ISO 8613-6 control sequences, and one can derive further logos of one's own.

Related Question