Skip to content

Instantly share code, notes, and snippets.

@rezlam
Created November 19, 2010 21:39
Show Gist options
  • Save rezlam/707237 to your computer and use it in GitHub Desktop.
Save rezlam/707237 to your computer and use it in GitHub Desktop.
~/test$ cat test.sh
#!/bin/sh
param1=\'$1\'
param2="'$1'"
echo \'$1\'
echo $param1
echo $param2
~/test$ ./test.sh 'require "irb"'
'require "irb"'
'require "irb"'
'require "irb"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment