Are there alternatives to figlet?

QuestionsQuestions8 SkillsProYour First Linux LabOct, 02 2025
0616

Yes, there are several alternatives to figlet that you can use to create ASCII art text. Here are a few popular ones:

  1. Toilet: Similar to figlet, but with additional features like color support and various formatting options.

    sudo apt-get install toilet
    toilet "Hello, World!"
  2. Banner: A simple command that creates large ASCII text. It is often included in Unix-like systems.

    banner "Hello, World!"
  3. ASCII Art Generator: There are online tools and libraries that can generate ASCII art from text. You can find various ASCII art generators by searching online.

  4. Pipes.sh: A command-line tool that creates ASCII art using pipes and other characters.

    sudo apt-get install pipes.sh
    pipes.sh "Hello, World!"
  5. Cowsay: While not exactly the same, cowsay adds a fun twist by displaying text in a speech bubble from an ASCII cow (or other characters).

    sudo apt-get install cowsay
    cowsay "Hello, World!"

Feel free to try these alternatives and see which one you prefer!

0 Comments

no data
Be the first to share your comment!