17 lines
128 B
Bash
Executable File
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: $@"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|