gpt4 book ai didi

linux - 从 scala 代码执行的 Shell 命令无法识别 bash 别名

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:50:26 25 4
gpt4 key购买 nike

我有一个执行类似于此的 hdfs 命令的 scala 文件:

hdfs dfs -mkdir /test/

当我在我的 shell 中运行该命令时它运行良好,因为我在我的 .bashrc 文件中设置了以下别名:

alias hdfs='/usr/local/hadoop-2.7.0/bin/hdfs'

...然而,当我使用 SBT 在我的 Scala 代码中构建运行 shell 命令的代码时,出现以下错误:

 java.io.IOException: Cannot run program "hdfs": error=2, No such file or directory

有没有办法识别别名?我无法更改代码,因为我希望程序在安装了 hdfs 的任何系统上运行,无论目录如何,唯一应该更改的是别名。

更多信息:我在带有 hadoop 的 docker 镜像中运行我的测试(不应该改变任何东西),该镜像运行一个脚本,每次容器启动时执行以下两行:

source ~/.bashrc         # To get the alias
shopt -s expand_aliases # To allow alias expansion in your script

最佳答案

修复了我的 .bashrc 文件中的以下行

export PATH=$PATH:/usr/local/hadoop/bin/

关于linux - 从 scala 代码执行的 Shell 命令无法识别 bash 别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32056961/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com