Created
January 25, 2024 18:36
-
-
Save trevarj/8a27cc6edda1051367878871e302e0ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo -e "\e[1mbold\e[0m" | |
echo -e "\e[3mitalic\e[0m" | |
echo -e "\e[3m\e[1mbold italic\e[0m" | |
echo -e "\e[4munderline\e[0m" | |
echo -e "\e[9mstrikethrough\e[0m" | |
echo -e "\e[31mHello World\e[0m" | |
echo -e "\x1B[31mHello World\e[0m" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment