Skip to content

Instantly share code, notes, and snippets.

@lcosta
Last active December 18, 2015 11:59
Show Gist options
  • Save lcosta/5780058 to your computer and use it in GitHub Desktop.
Save lcosta/5780058 to your computer and use it in GitHub Desktop.
Shebang (Unix)
http://en.wikipedia.org/wiki/Shebang_(Unix)
#!/bin/csh
# http://en.wikipedia.org/wiki/C_shell
set i = 2
set j = 1
while ( $j <= 10 )
echo '2 **' $j = $i
@ i *= 2
@ j++
end
#!/usr/bin/env ruby
puts "#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment