Windowsのcommand promptで2つのファイルの差分を取り出す

tmp.txt

aaa
bbb
ccc
ddd
eee
fff
ggg
hhh
iii

tmp1.txt

bbb
ccc
eee

のとき、tmptxtとtmp1.txtの差分を取り出したいときは

findstr \V \G:tmp1.txt tmp.txt

とします。 ここで、

\G:tmp1.txt : tmp1.txtの中身を検索文字列として使う
\V hoge   :  hogeがつかない文字列を表示

です。

http://sprint-life.hatenablog.com/entry/2014/08/28/120244

http://stackoverflow.com/questions/6877238/what-is-the-windows-equivalent-of-the-diff-command