Skip to content

Instantly share code, notes, and snippets.

@eric
Created January 20, 2010 22:34
Show Gist options
  • Save eric/282365 to your computer and use it in GitHub Desktop.
Save eric/282365 to your computer and use it in GitHub Desktop.
[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