7 lines
57 B
Bash
7 lines
57 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
diff "$@"
|
||
|
|
if [ "$?" = "2" ]; then
|
||
|
|
exit 1
|
||
|
|
fi
|