[
https://issues.apache.org/jira/browse/SPARK-5747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Nicholas Chammas resolved SPARK-5747.
-------------------------------------
Resolution: Incomplete
Resolving since this issue's scope is too large / loosely defined. We should
fix Bash bugs as we find them, of course. Not sure we need this issue here
though.
> Review all Bash scripts for word splitting bugs
> -----------------------------------------------
>
> Key: SPARK-5747
> URL: https://issues.apache.org/jira/browse/SPARK-5747
> Project: Spark
> Issue Type: Umbrella
> Components: Build
> Reporter: Nicholas Chammas
>
> Triggered by [this
> discussion|http://apache-spark-developers-list.1001551.n3.nabble.com/1-2-1-start-all-sh-broken-td10583.html].
> Bash Word Splitting is nefarious problem.
> http://mywiki.wooledge.org/WordSplitting
> Bad (x):
> {code}
> command $variable
> {code}
> Good (/):
> {code}
> command "$variable"
> {code}
> Bad (x):
> {code}
> command $variable/path
> {code}
> Good (/):
> {code}
> command "$variable/path"
> {code}
> Bad (x):
> {code}
> command $variable/stuff*
> {code}
> Good (/):
> {code}
> command "$variable"/stuff*
> {code}
> It's that simple.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]