2012-02-04 プロセス置換 Shell diff the outputs of two programs | commandlinefu.com diff <(exiftool img_1.jpg) <(exiftool img_2.jpg)リダイレクトの何かの機能かなと思っていてら、Bashだとプロセス置換という機能があって、 command <(list) command >(list)と記述すると、名前付きパイプなどを利用してそこにプロセスlistの入力/出力を接続しつつ、コマンドcommandの引数にそのファイル名を渡すということらしい。これは便利そう。