| 29 |
# that lacks a -u option. Try to deal with this; better do the test for the -b |
# that lacks a -u option. Try to deal with this; better do the test for the -b |
| 30 |
# option as well. |
# option as well. |
| 31 |
|
|
| 32 |
if diff -u /dev/null /dev/null; then |
if diff -u /dev/null /dev/null; then |
| 33 |
if diff -ub /dev/null /dev/null; then cf="diff -ub"; else cf="diff -u"; fi |
if diff -ub /dev/null /dev/null; then cf="diff -ub"; else cf="diff -u"; fi |
| 34 |
else |
else |
| 35 |
if diff -b /dev/null /dev/null; then cf="diff -b"; else cf="diff"; fi |
if diff -b /dev/null /dev/null; then cf="diff -b"; else cf="diff"; fi |
| 36 |
fi |
fi |
| 37 |
|
|