Created
April 24, 2012 03:25
-
-
Save caruccio/2476150 to your computer and use it in GitHub Desktop.
Named parameters in bash
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
# Do you like python named parameters (kvargs) ? | |
# Well, you can have it in bash too!! | |
$ function myfunc() { local $*; echo "foo=$foo, bar=$bar"; } | |
$ myfunc bar=world foo=hello | |
foo=hello, bar=world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
greate