Files
Bash_Scripts/script.sh
2025-12-14 20:16:53 +00:00

17 lines
128 B
Bash
Executable File

#!/bin/bash
if [ $# -eq 0 ]; then
echo "Usage: ./script.sh <names...>"
exit 1
fi
echo "Hello, all of you: $@"