- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create an Animated Art on Your Linux Terminal?
Using the characters like - , / or | and many other from the keyboard, we can create animation characters. These characters can be static as well as moving in the screen. All this involves programming using shell scripting. These scripts are bundled into libraries or packages which can be installed in the terminal. Below we will see the examples of these animations.
A Running Train
This package produces a train animation when run from the terminal. But first we install it and then simple type sl in the terminal.
$ sudo apt-get install sl $ sl
Running the above code gives us the following result −
The Castle
We can create an animation of the castle by using the below command. In this url, you will also find a host of many other animated files.
curl -s http://artscene.textfiles.com/vt100/castle.vt | pv -q -L 9600
Running the above code gives us the following result −
Using figlet
We can also use a simple command line utility called figlet to get various ASCII text. First we have to install it, then we run it using various options along with giving the text that we want to animate.
$ sudo apt install figlet toilet $ figlet -f slant "Today"
Running the above code gives us the following result −
- Related Articles
- How to decorate your Linux Terminal using Shell?
- How to Test your Broadband Speed from Linux Terminal
- How to do simple Arithmetic on Linux Terminal?
- How to download a website page on Linux terminal?
- How to create a new directory in Linux using the terminal?
- How to Create a File in the Linux/Unix system using terminal?
- How to create key binds in the Linux system using the terminal?
- How to create an animated search form with CSS?
- How to set your python path on Linux?
- How to use rainbow colors in linux terminal
- How to output colored text to a Linux terminal?
- How to create an animated, closable side navigation menu with CSS?
- How to Find Linux Server Geographic Location in Terminal?
- How to create Animated Gradient Background in android.
- How to install guake drop down terminal terminal on ubuntu
