Putty 在执行 bash 脚本时关闭

发布于 2024-09-26 10:14:34 字数 288 浏览 2 评论 0原文

我正在编写我的第一个 bash 脚本,所以请原谅新手。

它被称为 hello.bash,这就是它包含的内容:

#!/bin/bash
echo Hello World

我确实

chmod 700 hello.bash

授予自己执行权限。

现在,当我输入时,

exec hello.bash

我的腻子终端立即关闭。我做错了什么?

I am writing my first ever bash script, so excuse the noobie-ness.

It's called hello.bash, and this is what it contains:

#!/bin/bash
echo Hello World

I did

chmod 700 hello.bash

to give myself permissions to execute.

Now, when I type

exec hello.bash

My putty terminal instantly shuts down. What am I doing wrong?

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

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

发布评论

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

评论(1

三人与歌 2024-10-03 10:14:34

从 exec 的手册页

如果提供了命令,它将替换 shell,而不创建新进程。如果未指定命令,则可能会使用重定向来影响当前的 shell 环境。

因此,您的脚本进程会代替您的终端运行,并且当它退出时,您的终端也会退出。只需执行它即可:

./hello.bash

From the man page for exec:

If command is supplied, it replaces the shell without creating a new process. If no command is specified, redirections may be used to affect the current shell environment.

So your script process runs in place of your terminal and when it exits, so does your terminal. Just execute it instead:

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