【发布时间】:2024-01-11 03:11:01
【问题描述】:
在 bash/GNU 工具中是否有一些单行方式来阻止文件中匹配的字符串?理想情况下,超时。我想避免多行循环。
更新:似乎我应该强调我希望该过程在字符串匹配时结束。
【问题讨论】:
在 bash/GNU 工具中是否有一些单行方式来阻止文件中匹配的字符串?理想情况下,超时。我想避免多行循环。
更新:似乎我应该强调我希望该过程在字符串匹配时结束。
【问题讨论】:
感谢两位的回答,但重要的是进程会阻塞直到找到,然后结束。我发现了这个:
grep -q 'PATTERN' <(tail -f file.log)
-q 不太便携,但我只会使用 Red Hat Enterprise Linux,所以没关系。
并有超时:
timeout 180 grep -q 'PATTERN' <(tail -f file.log)
【讨论】:
-q不可移植,它是由POSIX指定的。
grep -m1 'PATTERN' <(tail -f file.log) >/dev/null。
grep -q 'PATTERN' <(timeout 10 tail -f file.log) 使tail 进程终止,同时包含超时。
我用 sed 而不是 grep 做了一个变体,打印所有解析的行。
sed '/PATTERN/q' <(tail -n 0 -f file.log)
【讨论】:
看看--max-count选项:
tail -f file.log | grep -m 1 'PATTERN'
它将在匹配PATTERN的第一行之后退出。
编辑:注意下面@Karoly 的评论。如果file.log 速度较慢,则grep 进程可能会阻塞,直到在匹配行之后将其他内容添加到文件中。
echo 'context PATTERN line' >> file.log ## grep shows the match but doesn't exit
将打印匹配的行,但在将其他内容附加到文件之前它不会退出(即使它还没有换行符):
echo -n ' ' >> file.log ## Now the grep process exits
在某些情况下(例如高速日志文件),这没什么大不了的,因为无论如何可能很快就会将新内容添加到文件中。
另请注意,这种行为不会在从控制台作为标准输入读取时发生,因此grep 从管道读取的方式似乎有所不同:
$ grep -m1 'PATTERN' - # manually type PATTERN and enter, exits immediately
$ cat | grep -m1 'PATTERN' # manually type PATTERN and enter, and it hangs
【讨论】:
-m 1 参数使其在第一次匹配后退出PATTERN
PATTERN 突出显示,但进程没有退出。注意:这是 bash,你的 shell 可能更聪明。
logcat,IIRC),所以我没有注意到挂起。我不确定为什么 grep 会这样工作,因为手册页说它应该在达到最大计数时立即停止。
sleep infinity 立即退出流?
tail -f file | grep word | head -n1
将发布带有异步超时的片段
现在:How to include a timer in Bash Scripting?
链接的答案定义了一个“run_or_timeout”函数,它以一种非常熟悉 bash 的方式完成您正在寻找的事情
【讨论】:
-1 语法,IIRC。使用-n 1。
tail 不会在找到字符串时结束。
grep --line-buffered 是等式的一部分。此外,现在看起来好像运行 head -n0 将在下一行 在 第一个匹配项之后中止。稍后我会尝试弄清楚更多
或者,如果你想抑制不匹配行的输出:
$ 尾 -f 路径 | sed -n '/模式/{p; q;}'添加超时的简单方法是:
$ cmd&睡眠10;杀死$! 2> /开发/空(抑制来自 kill 的错误,以便在进程终止时 在时间到期之前,您不会收到“没有这样的过程”警告)。 请注意,这根本不可靠,因为 cmd 将终止并且 pid 计数将环绕和其他一些 命令将在计时器到期时拥有该 pid。
【讨论】:
等待文件出现
while [ ! -f /path/to/the.file ]
do sleep 2; done
等待字符串出现在文件中
while ! grep "the line you're searching for" /path/to/the.file
do sleep 10; done
【讨论】:
我有类似的要求,并提出了以下要求。
您所关注的单行代码是以“超时 ....”开头的行,其余代码是为单行代码提供所需信息并进行清理所需的准备工作之后。
##
## Start up the process whose log file we want to monitor for a specific pattern.
##
touch file_to_log_nohup_output.log
nohup "some_command" "some_args" >> file_to_log_nohup_output.log 2>&1 &
my_cmd_pid=$!
## Specify what our required timeout / pattern and log file to monitor is
my_timeout=10m
my_logfile="/path/to/some_command's/log/file.txt"
my_pattern="Started all modules."
## How does this work?
## - In a bash sub shell, started in the background, we sleep for a second and
## then execute tail to monitor the application's log file.
## - Via the arguments passed to it, tail has been configured to exit if the
## process whose log file it is monitoring dies.
## - The above sub shell, is executed within another bash sub shell in which
## we identify the process id of the above sub shell and echo it to stdout.
## - Lastly, in that sub shell we wait for the sub shell with tail running in
## it as a child process, to terminate and if it does terminate, we redirect
## any output from its stderr stream to /dev/null.
## - The stdout output of the above sub shell is piped into another sub shell
## in which we setup a trap to watch for an EXIT event, use head -1 to read
## the process id of the tail sub shell and finally start a grep process
## to grep the stdout for the requested pattern. Grep will quit on the first
## match found. The EXIT trap will kill the process of the tail sub shell
## if the sub shell running grep quits.
##
## All of this is needed to tidy up the monitoring child processes for
## tail'ing + grep'ing the application log file.
##
## Logic of implementing the above sourced from: http://superuser.com/a/1052328
timeout ${my_timeout} bash -c '((sleep 1; exec tail -q -n 0 --pid=$0 -F "$1" 2> /dev/null) & echo $! ; wait $! 2>/dev/null ) | (trap "kill \${my_tail_pid} 2>/dev/null" EXIT; my_tail_pid="`head -1`"; grep -q "$2")' "${my_cmd_pid}" "${my_logfile}" "${my_pattern}" 2>/dev/null &
##
## We trap SIGINT (i.e. when someone presses ctrl+c) to clean up child processes.
##
trap 'echo "Interrupt signal caught. Cleaning up child processes: [${my_timeout_pid} ${my_cmd_pid}]." >> "file_to_log_nohup_output.log"; kill ${my_timeout_pid} ${my_cmd_pid} 2> /dev/null' SIGINT
wait ${my_timeout_pid}
my_retval=$?
trap - SIGINT
## If the time out expires, then 'timeout' will exit with status 124 otherwise
## it exits with the status of the executed command (which is grep in this
## case).
if [ ${my_retval} -eq 124 ]; then
echo "Waited for [${my_timeout}] and the [${my_pattern}] pattern was not encountered in application's log file."
exit 1
else
if [ ${my_retval} -ne 0 ]; then
echo "An issue occurred whilst starting process. Check log files:"
echo " * nohup output log file: [file_to_log_nohup_output.log]"
echo " * application log file: [${my_logfile}]"
echo " * application's console log file (if applicable)"
exit 1
else
info_msg "Success! Pattern was found."
exit 0
fi
fi
我已将上述内容实现为一个独立的脚本,该脚本可用于运行命令等待其日志文件具有所需的模式,并带有超时。
可在此处获取:run_and_wait.sh
【讨论】: