Skip to content

Instantly share code, notes, and snippets.

@caruccio
Last active September 26, 2018 12:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save caruccio/797fd0d5ab76dae6a8e1d3778a2dec58 to your computer and use it in GitHub Desktop.
Save caruccio/797fd0d5ab76dae6a8e1d3778a2dec58 to your computer and use it in GitHub Desktop.
Spread parameters
$ function spread_parameter {
local p="$1"
shift
local IFS=","
eval "echo $(echo "$p\ {$*}")"
}
$ spread_parameter --include '*.jpg' '*.gif' '*.svg'
--include *.jpg --include *.gif --include *.svg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment