Created
August 13, 2019 01:38
-
-
Save JavaNoobPig/cbd1527fa48845d2518ad59b95d7de4b to your computer and use it in GitHub Desktop.
Jenkins10_1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| NAME=$1 | |
| LASTNAME=$2 | |
| SHOW=$3 | |
| if [ "$SHOW" = "true" ]; then | |
| echo "Hello, $NAME $LASTNAME" | |
| else | |
| echo "If you want to see the name, please mark the SHOW option" | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment