🐱

diff や colordiff でコマンドの実行結果と比較する方法

2021/05/01に公開

diffcolordiff は、通常、2 つのファイルの差分を表示するコマンドだが、他のコマンドの実行結果と比較することもできる。

2 つのファイルの差分比較

Shell
colordiff -u file1 file2

ファイルとコマンドの実行結果の差分比較

Shell
colordiff -u file <(command)

2 つのコマンドの実行結果の差分比較

Shell
colordiff -u <(command1) <(command2)
GitHubで編集を提案

Discussion