Created
January 3, 2014 22:25
-
-
Save smujohnson/8247861 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
sjohnson@web1:~$ start="i am a" | |
sjohnson@web1:~$ echo $(args $start fat pig) | |
$VAR1 = 'i'; $VAR2 = 'am'; $VAR3 = 'a'; $VAR4 = 'fat'; $VAR5 = 'pig'; | |
sjohnson@web1:~$ echo $(args "$start" fat pig) | |
$VAR1 = 'i am a'; $VAR2 = 'fat'; $VAR3 = 'pig'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment