Skip to content

Remove color codes from output with sed in Linux bash

homepage-banner

TL; DR

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"

Back to Table of Contents

Disclaimer
  1. License under CC BY-NC 4.0
  2. Copyright issue feedback me#imzye.com, replace # with @
  3. Not all the commands and scripts are tested in production environment, use at your own risk
  4. No personal information is collected.
Feedback