La commande echo permet l'affichage d'une ligne de texte ou d'une séquence.
echo
root@ubuntu:~# echo -e "ligne1\nligne2" ligne1 ligne2 root@ubuntu:~# echo -n "ligne1 "; echo "ligne2" ligne1 ligne2
root@ubuntu:~# echo {1..5} 1 2 3 4 5 root@ubuntu:~# echo {5..1} 5 4 3 2 1 root@ubuntu:~# echo {001..010} 001 002 003 004 005 006 007 008 009 010 root@ubuntu:~# echo {a..z} a b c d e f g h i j k l m n o p q r s t u v w x y z root@ubuntu:~# echo "Nombre #"{1..7}, Nombre #1, Nombre #2, Nombre #3, Nombre #4, Nombre #5, Nombre #6, Nombre #7,