Skip to content

Instantly share code, notes, and snippets.

@JavaNoobPig
Created August 13, 2019 01:38
Show Gist options
  • Save JavaNoobPig/cbd1527fa48845d2518ad59b95d7de4b to your computer and use it in GitHub Desktop.
Save JavaNoobPig/cbd1527fa48845d2518ad59b95d7de4b to your computer and use it in GitHub Desktop.
Jenkins10_1
#!/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