main #1
11
script.sh
11
script.sh
@@ -1,15 +1,12 @@
|
|||||||
|
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
##Daca numarul total de argumente are mai putin de 2 argumente:
|
|
||||||
if [ $# -lt 2 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
echo "Usage: ./script.sh <first_name> <last_name>"
|
echo "Usage: ./script.sh <names...>"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
first_name="$1"
|
echo "Hello, all of you: $@"
|
||||||
last_name="$2"
|
|
||||||
|
|
||||||
echo "Hello, $first_name $last_name!"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user