6 lines
87 B
Bash
Executable file
6 lines
87 B
Bash
Executable file
if [[ $# -lt 3 ]]; then
|
|
echo "Usage: $0 <filename1> <filename2>"
|
|
exit 1
|
|
fi
|
|
|
|
if
|