Created
October 13, 2013 20:02
-
-
Save brianmed/6966815 to your computer and use it in GitHub Desktop.
Might need to check for variable existence with PERL5LIB.
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/tcsh | |
| if ( ${?VARIABLE} ) then | |
| echo "Joy:${VARIABLE}" | |
| else | |
| echo "Joy" | |
| endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment