概要
一時ファイルを作成せずに、コマンドの実行結果のdiffを取る (bashのProcess Substitutionで) - うまい棒blog
diff <(command) <(command)
みたいな感じで使う。
使用例
$ diff <(less new.json | jq .) <(less old.json | jq .)
一時ファイルを作成せずに、コマンドの実行結果のdiffを取る (bashのProcess Substitutionで) - うまい棒blog
diff <(command) <(command)
みたいな感じで使う。
$ diff <(less new.json | jq .) <(less old.json | jq .)