如何将文本文件中的变量获取到 Bash 变量中

发布于 2024-12-24 17:08:28 字数 199 浏览 0 评论 0原文

简单的问题,在 BASH 中,我试图读取 .pid 文件来终止进程。如何将该文件读入变量。我发现的所有示例都试图以多行方式阅读。我只想读取仅包含 PID 的一个文件

#!/bin/sh
PIDFile="/var/run/app_to_kill.pid"
CurPID=(<$PIDFile)

kill -9 $CurPID

Simple question, in BASH I'm trying to read in a .pid file to kill a process. How do I read that file into a variable. All the examples I have found are trying to read in many lines. I only want to read the one file that just contains the PID

#!/bin/sh
PIDFile="/var/run/app_to_kill.pid"
CurPID=(<$PIDFile)

kill -9 $CurPID

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

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

发布评论

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

评论(2

凹づ凸ル 2024-12-31 17:08:28

你就快到了:

CurPID=$(<"$PIDFile")

在你给出的例子中,你甚至不需要 temp 变量。只要这样做:

kill -9 $(<"$PIDFile")

You're almost there:

CurPID=$(<"$PIDFile")

In the example you gave, you don't even need the temp variable. Just do:

kill -9 $(<"$PIDFile")
2024-12-31 17:08:28

POSIX 可移植方式:

$ read pid <$pidfile

参见:pid=`cat $pidfile` 或读取 pid < $pid文件?

POSIX portable way:

$ read pid <$pidfile

See: pid=`cat $pidfile` or read pid <$pidfile?

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