I was trying to do something like
code --diff <(cat file1.txt) <(cat file2.txt)
But I get BrokenPipeError: [Errno 32] Broken pipe
The same using diff works
diff <(cat file1.txt) <(cat file2.txt)
I was trying to do something like
code --diff <(cat file1.txt) <(cat file2.txt)
But I get BrokenPipeError: [Errno 32] Broken pipe
The same using diff works
diff <(cat file1.txt) <(cat file2.txt)