Last active
October 10, 2016 16:28
-
-
Save njayachandran/c876dc5febdceee34e15285bf49caf11 to your computer and use it in GitHub Desktop.
Test Script
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
| echo "Hello world" | |
| if [ $# -gt 0 ]; then | |
| for parameter in $@ | |
| do | |
| echo $parameter; | |
| done | |
| fi | |
| echo $USER > /tmp/postProcessingOutput.log | |
| echo $USER || $USERNAME; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment