I\'m writing a Bash script that prints some text to the screen:
echo \"Some Text\"
Can I format the text? I would like to make it bold.
In order to apply a style on your string, you can use a command like:
echo -e '\033[1mYOUR_STRING\033[0m'
Explanation:
-e option means that escaped (backslashed) strings will be interpretedThe possible integers are: