如何在sunOS中临时更改脚本中的shell?

发布于 2024-11-03 13:37:26 字数 358 浏览 0 评论 0原文

该机器具有默认 shell“sh”并运行 SunOS。我尝试运行脚本,如下所示

#!/bin/bash
export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P9
echo $NLS_LANG

: 我得到输出:

NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P9^M: 不是标识符

我认为脚本无法执行此命令,但不明白为什么。可能是因为默认 shell 不是 bash shell。

你能帮我在脚本中将 sh shell 转换为 bash shell 吗?

PS:我也尝试过 #!/bin/sh 但结果是相同的

The machine has default shell "sh" and running SunOS. I try to run the script like:

#!/bin/bash
export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P9
echo $NLS_LANG

I get the output:

NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P9^M: is not an identifier

I think the script cannot execute this command but do not understand why. Maybe It is because the default shell is not bash shell.

Could you help me to convert sh shell into bash shell inside of the script.

P.S: I have also tried with #!/bin/sh but result is the same

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花伊自在美 2024-11-10 13:37:26

您的脚本使用了错误的行结尾。通过 dos2unix 运行它。

Your script is using the wrong line endings. Run it through dos2unix.

深陷 2024-11-10 13:37:26

您确定 Bash 就在您所说的地方吗?考虑使用以下 shebang:

bash-3.2$ cat ./test.sh
#!/usr/bin/env bash
export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P9
echo $NLS_LANG

确保您的 shell 脚本可执行:

bash-3.2$ chmod +x ./test.sh
bash-3.2$ ls -l ./test.sh
-rwxr-xr-x  1 paj  staff  81 26 Apr 11:52 ./test.sh

并运行...

bash-3.2$ ./test.sh
AMERICAN_AMERICA.WE8ISO8859P9

Are you sure that Bash is where you say it is? Consider using the following shebang:

bash-3.2$ cat ./test.sh
#!/usr/bin/env bash
export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P9
echo $NLS_LANG

Ensure your shell script is executable:

bash-3.2$ chmod +x ./test.sh
bash-3.2$ ls -l ./test.sh
-rwxr-xr-x  1 paj  staff  81 26 Apr 11:52 ./test.sh

And run...

bash-3.2$ ./test.sh
AMERICAN_AMERICA.WE8ISO8859P9
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文