20 lines
166 B
Bash
Executable File
20 lines
166 B
Bash
Executable File
|
|
#!/bin/bash
|
|
##1
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: ./script.sh $name"
|
|
exit 1
|
|
fi
|
|
|
|
name="$1"
|
|
|
|
echo "Hello, $name!"
|
|
echo "Welcome to DevOps Bash scripting."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|