Files
linux_intro/labs/lab2/scripts/script221.sh
2025-10-01 22:52:39 +03:00

4 lines
119 B
Bash
Executable File

#!/bin/bash
[ "$#" -ne 2 ] && echo "usage: $0 str1 str2" && exit 1
[ "$1" = "$2" ] && echo "equal" || echo "not equal"