diff --git a/sample_code.sh b/sample_code.sh index 7fe4b08..a63c644 100644 --- a/sample_code.sh +++ b/sample_code.sh @@ -1,7 +1,9 @@ #!/bin/bash # + +echo "This is an Samples Script from GitHub" +echo "This is test from Linux Server" echo "This is an example of a script" echo "This is running in a build step" -echo "This is param $PASSED" -SUM=$(($FIRSTNUMBER + $SECONDNUMBER)) +SUM=$((FIRSTNUMBER + SECONDNUMBER)) echo "$SUM"