ShadowArch/UserScripts/diff-args

6 lines
108 B
Plaintext
Raw Permalink Normal View History

2016-11-09 22:25:00 -06:00
#!/bin/bash
if [ "$1" != "$2" ]; then
echo "These are different.";
else
echo "These are the same.";
fi