6 lines
108 B
Plaintext
6 lines
108 B
Plaintext
|
#!/bin/bash
|
||
|
if [ "$1" != "$2" ]; then
|
||
|
echo "These are different.";
|
||
|
else
|
||
|
echo "These are the same.";
|
||
|
fi
|