I want to the Ubuntu terminal to show art like this picture:

How to do that? I want put my own logo using the word character. I would like to arrange it and form a logo.
Please teach me the way..
|
I want to the Ubuntu terminal to show art like this picture:
How to do that? I want put my own logo using the word character. I would like to arrange it and form a logo. Please teach me the way.. |
|||||||||||||
|
|
Easiest method:
Courtesy: http://community.linuxmint.com/tutorial/view/886 Sample Output:
Another method:
Get a good ASCII art from some site(or you can create on your own), create a new file in your home directory, paste the ASCII art in that file(as it is). Let us save the file as
Base idea from: http://dorkbyte.com/2012/08/05/trick-out-your-terminal-with-ascii-art/ |
||||
|
In the general case, you can manipulate the terminal display using special character sequences. You can find useful lists of the special commands the terminal understands here or here. Note that these commands are not being interpreted by the shell (eg, (To further complicate matters, there are different types of terminal which can be emulated. The above character sequences apply to an emulated VT100 terminal, which is probably a safe bet. These different types of terminals now emulated in software correspond to physical terminals which could be connected to Unix mainframes of lore.) All special commands start with an escape character, after which the terminal interprets the next few characters. To change the text colour to blue, for example
Attempting to do anything complex using these commands manually will very quickly give you a headache. The For the case of trying to output graphics, the correct tool is probably libcaca. |
|||
|
|