Created
January 20, 2010 22:34
-
-
Save eric/282365 to your computer and use it in GitHub Desktop.
This file contains 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
[2 : 0] eric@morizo:/Users/eric > cat > 'this is a test.sh' | |
#!/bin/sh | |
echo "we are so cool" | |
[3 : 0] eric@morizo:/Users/eric > chmod 755 'this is a test.sh' | |
[4 : 0] eric@morizo:/Users/eric > irb | |
>> system "this is a test.sh" | |
=> false | |
>> system ["this is a test.sh", "this is a test.sh"] | |
we are so cool | |
=> true | |
>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment