mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-03 06:21:06 +01:00
6d0e99b956
Wraps output of two commands into separate file handles that diff can compare.
24 lines
570 B
Plaintext
24 lines
570 B
Plaintext
# To view the differences between two files:
|
|
diff -u version1 version2
|
|
|
|
# To view the differences between two directories:
|
|
diff -ur folder1/ folder2/
|
|
|
|
# To ignore the white spaces:
|
|
diff -ub version1 version2
|
|
|
|
# To ignore the blank lines:
|
|
diff -uB version1 version2
|
|
|
|
# To ignore the differences between uppercase and lowercase:
|
|
diff -ui version1 version2
|
|
|
|
# To report whether the files differ:
|
|
diff -q version1 version2
|
|
|
|
# To report whether the files are identical:
|
|
diff -s version1 version2
|
|
|
|
# To diff the output of two commands or scripts:
|
|
diff <(command1) <(command2)
|