Is it possible to use the "diff" tool without having physical files? Something like this:
diff "hello" "hell"
|
Is it possible to use the "diff" tool without having physical files? Something like this:
|
|||
|
|
|
You can diff standard input with a file by using the special filename
With bash, you can also use anonymous named pipes (a bit of a misnomer) to diff two pipelines:
|
|||
|
|