shell 脚本调用 sql 脚本时出现语法错误

发布于 2024-12-05 12:47:36 字数 300 浏览 2 评论 0原文

我试图在 shell 提示符下执行以下命令:

nohup sqlplus  DB_ID/DB_PWD@DOMAIN @main.sql 490 >> result.out 2>>&1 &

main.sql 是一个接受 490 作为参数的 sql 脚本。 我收到错误:

bash: syntax error near unexpected token `&'

语法有什么问题?

I am trying to execute the following command at shell prompt:

nohup sqlplus  DB_ID/DB_PWD@DOMAIN @main.sql 490 >> result.out 2>>&1 &

main.sql is a sql script that accepts 490 as argument.
I get error:

bash: syntax error near unexpected token `&'

What is wrong with the syntax?

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

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

发布评论

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

评论(1

情徒 2024-12-12 12:47:36

语法错误来自于您将 STDERR 重定向到 STDOUT。必需的(也是唯一有效的)语法是 2>&1。它仍然符合您的期望。您在 STDOUT 重定向中执行的 >> 仅对实际文件有帮助,并防止文件数据被删除。对于管道重定向,这不是必需的,甚至在语法上也是不允许的。

最终正确的语法是

nohup sqlplus  DB_ID/DB_PWD@DOMAIN @main.sql 490 >> result.out 2>&1 &

The syntax error comes from your redirection of STDERR to STDOUT. The required (and only valid) syntax is 2>&1. It still does what you expect from it. The >> you do in the STDOUT redirection only helps for actual files and prevents the file data to be erased. For pipe redirection, this is not required and not even allowed syntax-wise.

The final correct syntax is

nohup sqlplus  DB_ID/DB_PWD@DOMAIN @main.sql 490 >> result.out 2>&1 &
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文