4 lines
169 B
Bash
Executable file
4 lines
169 B
Bash
Executable file
#!/bin/sh
|
|
# interactive diff with pagination and nice coloring
|
|
diff-color --report-identical-files "$@" |
|
|
less --RAW-CONTROL-CHARS --quit-on-intr --quit-if-one-screen
|