[ https://issues.apache.org/jira/browse/SPARK-32443?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17165162#comment-17165162 ]
Apache Spark commented on SPARK-32443: -------------------------------------- User 'dongjoon-hyun' has created a pull request for this issue: https://github.com/apache/spark/pull/29241 > Fix testCommandAvailable to use POSIX compatible `command -v` > ------------------------------------------------------------- > > Key: SPARK-32443 > URL: https://issues.apache.org/jira/browse/SPARK-32443 > Project: Spark > Issue Type: Bug > Components: Spark Core > Affects Versions: 2.1.3, 2.2.3, 2.3.4, 2.4.6, 3.0.0 > Reporter: Dongjoon Hyun > Priority: Major > > Currently, we run the command to check the existence. This is dangerous and > doesn't work sometimes. > {code} > scala> sys.process.Process("cat").run().exitValue() > res0: Int = 0 > scala> sys.process.Process("ls").run().exitValue() > LICENSE > NOTICE > bin > doc > lib > man > res1: Int = 0 > scala> sys.process.Process("rm").run().exitValue() > usage: rm [-f | -i] [-dPRrvW] file ... > unlink file > res4: Int = 64 > {code} > {code} > scala> sys.process.Process("command -v rm").run().exitValue() > /bin/rm > res5: Int = 0 > {code} -- This message was sent by Atlassian Jira (v8.3.4#803005) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org