What are other fun terminal commands?

QuestionsQuestions8 SkillsProBasic Files OperationsOct, 07 2025
0214

Here are some fun terminal commands you can try:

  1. yes: This command outputs a string repeatedly until interrupted. For example:

    yes "I love terminal commands!"

    To stop it, press Ctrl+C.

  2. rev: This command reverses the text you input. For example:

    echo "Hello" | rev
  3. banner: This command displays a large ASCII banner of the text you provide. Install it using:

    sudo apt-get install sysvbanner -y

    Use it by typing:

    banner "Hello!"
  4. asciiquarium: This command displays an animated aquarium in ASCII art. Install it with:

    sudo apt-get install asciiquarium -y

    Run it by typing:

    asciiquarium
  5. sl (Steam Locomotive): As mentioned earlier, it displays an animation of a steam locomotive. Install it with:

    sudo apt-get install sl -y
  6. cmatrix: This command creates a Matrix-style digital rain effect in the terminal. Install it using:

    sudo apt-get install cmatrix -y

    Run it by typing:

    cmatrix
  7. fortune: Displays a random quote or saying. Install it with:

    sudo apt-get install fortune -y

    Use it by typing:

    fortune

These commands can add some entertainment to your terminal sessions!

0 Comments

no data
Be the first to share your comment!