出力から色を削除する
色付きの出力を生成するスクリプトがあり、ANSIコードを削除する必要があります。 #!/bin/bash exec > >(tee log) # redirect the output to a file but keep it on stdout exec 2>&1 ./somescript 出力は(ログファイル内)です。 java (pid 12321) is running...@[60G[@[0;32m OK @[0;39m] ここにESCの文字の入れ方がわからなかったので入れ@ました。 スクリプトを次のように変更しました: #!/bin/bash exec > >(tee log) # redirect the output to a file but keep it on stdout exec 2>&1 …