Last active
August 29, 2015 14:22
-
-
Save gschueler/e71db749101a499b0463 to your computer and use it in GitHub Desktop.
put in my-plugin/contents/
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/sh | |
| NAME=$1 | |
| shift | |
| MOOD=$1 | |
| shift | |
| NODE=$1 | |
| echo "Hi $NAME@$NODE, it's interesting that you feel $MOOD" | |
| whoami |
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/sh | |
| NAME=$1 | |
| shift | |
| MOOD=$1 | |
| shift | |
| echo "Hi $NAME, it's interesting that you feel $MOOD" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment