gpt4 book ai didi

linux - 当某些脚本在其中执行 grep 时编辑文件是否有任何影响

转载 作者:太空狗 更新时间:2023-10-29 11:18:46 24 4
gpt4 key购买 nike

好吧,我正在尝试根据文件中不存在的某些文本做出一些决定,但问题是当我的 shell 脚本在其中执行 grep 时文件将被修改。

#!/bin/bash
grep -q "decision" /home/tejto/test/testingshell
ret_code=$?
while [ $ret_code -ne 0 ]
do
echo $ret_code
grep -q "decision" /home/tejto/test/testingshell
echo 'Inside While!'
sleep 5
done
echo 'Gotcha!'

启动此 shell 脚本时文件中不存在文本“decision”,但是当我通过其他一些 bash 提示符修改此文件并将文本“decision”放入其中时,在这种情况下我的脚本没有采用该文本更改并且它在 while 中继续循环,那么这是否意味着我的 shell 脚本缓存了该特定文件?

最佳答案

因为您只在循环外设置了一次 ret_code 变量,而不是在下一个 grep -q 命令之后在循环内再次设置它。

要修复你需要:

grep -q "decision" /home/tejto/test/testingshell
ret_code=$?
while [ $ret_code -ne 0 ]
do
echo $ret_code
grep -q "decision" /home/tejto/test/testingshell
ret_code=$?
echo 'Inside While!'
sleep 5
done
echo 'Gotcha!'

或者您可以像这样缩短您的脚本:

#!/bin/bash

while ! grep -q "decision" /home/tejto/test/testingshell
do
echo $?
echo 'Inside While!'
sleep 5
done
echo 'Gotcha!'

即无需使用变量,直接在 while 条件中使用 grep -q

[EDIT:Tejendra]

#!/bin/bash

until grep -q "decision" /home/tejto/test/testingshell
do
echo $?
echo 'Inside While!'
sleep 5
done
echo 'Gotcha!'

最后一个解决方案不会使用 ret_code 并给出所需的结果作为第一个解决方案。

关于linux - 当某些脚本在其中执行 grep 时编辑文件是否有任何影响,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28470785/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com