Skip to content
This repository was archived by the owner on Feb 18, 2021. It is now read-only.

$* will undergo word splitting and pathname expansion #47

Merged
merged 1 commit into from
Aug 1, 2016
Merged

$* will undergo word splitting and pathname expansion #47

merged 1 commit into from
Aug 1, 2016

Conversation

andlrc
Copy link
Contributor

@andlrc andlrc commented Jul 29, 2016

I changed $* to "$@" which will expand parameters as passed and prevent pathname expansion, consider this snippet:

~ $ cat test.sh
#!/usr/bin/env bash
printf "<%s>" $*
printf "\n"
printf "<%s>" "$*"
printf "\n"
printf "<%s>" "$@"
printf "\n"
~ $ ./test.sh 'hello world' 'John' 'Doe'
<hello><world><John><Doe>
<hello world John Doe>
<hello world><John><Doe>

Above each send argument for printf is wrapped in <...>. "$@" is the only expansion that respects the send arguments.

If we run the same test with a literal * the result will be something like:

~ $ ./test.sh '*'
<bin><Desktop><Documents><Downloads><...><...>
<*>
<*>

@twolfson
Copy link
Contributor

Looks good to me. Here's the CHANGELOG and release command:

1.6.3 - Fixed word splitting in `release.sh` via @andlrc in #47
./release.sh 1.6.3

@mlmorg mlmorg merged commit 144f809 into uber-archive:master Aug 1, 2016
@twolfson
Copy link
Contributor

twolfson commented Aug 1, 2016

Thanks @mlmorg =)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants