使用 sudo 执行时脚本不起作用

发布于 2024-08-25 19:20:35 字数 303 浏览 8 评论 0原文

Linux bash脚本:

function Print()
{
    echo $1
}

Print "OK"

这个脚本运行成功,直接执行时,用sudo运行却报错:

alex@alex-linux:~/tmp$ ./sample-script 
OK
alex@alex-linux:~/tmp$ sudo ./sample-script 
[sudo] password for alex: 
./sample-script: 1: Syntax error: "(" unexpected

为什么?

Linux bash script:

function Print()
{
    echo $1
}

Print "OK"

This script runs successfully, when executed directly, and gives an error running with sudo:

alex@alex-linux:~/tmp$ ./sample-script 
OK
alex@alex-linux:~/tmp$ sudo ./sample-script 
[sudo] password for alex: 
./sample-script: 1: Syntax error: "(" unexpected

Why?

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

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

发布评论

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

评论(2

稍尽春風 2024-09-01 19:20:35

你有

#!/bin/bash

脚本的第一行吗?这可能需要

do you have

#!/bin/bash

as the first line of the script? this may be needed

南渊 2024-09-01 19:20:35

也许 root 有一个不同的默认 shell,不支持该语法。

Perhaps root has a different default shell that doesn't support that syntax.

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