Remove color codes from output with sed in Linux bash
the following sed
script slice could help you remove color codes from the output of linux bash terminal
cat output | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g"
the following sed
script slice could help you remove color codes from the output of linux bash terminal
cat output | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g"