Diff without files

2020-06-08 23:34发布

Is it possible to use the "diff" tool without having physical files? Something like this:

diff "hello" "hell"

标签: diff
1条回答
狗以群分
2楼-- · 2020-06-08 23:52

You can diff standard input with a file by using the special filename -:

# diff the contents of the file 'some-file' with the string "foobar"
echo foobar | diff - some-file

With bash, you can also use anonymous named pipes (a bit of a misnomer) to diff two pipelines:

# diff the string "foo" with the string "baz"
diff <(echo foo) <(echo baz)

See also How can you diff two pipelines with bash?.

查看更多
登录 后发表回答