如何将文本文件中的变量获取到 Bash 变量中
简单的问题,在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你就快到了:
在你给出的例子中,你甚至不需要 temp 变量。只要这样做:
You're almost there:
In the example you gave, you don't even need the temp variable. Just do:
POSIX 可移植方式:
参见:pid=`cat $pidfile` 或读取 pid < $pid文件?
POSIX portable way:
See: pid=`cat $pidfile` or read pid <$pidfile?