2021-01-07 11:01:15 +00:00
|
|
|
#!/bin/sh
|
2021-07-29 14:02:20 +00:00
|
|
|
# interactive diff with pagination and nice coloring
|
2021-04-02 18:57:58 +00:00
|
|
|
set -o pipefail
|
2021-07-06 22:48:35 +00:00
|
|
|
diff-color --report-identical-files "$@" |
|
2021-04-11 20:47:51 +00:00
|
|
|
less --RAW-CONTROL-CHARS --quit-on-intr --quit-if-one-screen
|