while bash 中的命令“如果 file.txt 中存在 $string...do...”

发布于 2024-12-21 13:33:05 字数 869 浏览 2 评论 0原文

需要 while 命令的帮助。如果 playlist.txt 中有 $sitename 我想运行一个命令

这是我的 bash:

   cat playlist.txt | grep -e "$sitename" |  sed -e "s/^.*\(http:.*"$sitename".*flv\).*$/\1/g" | sort | uniq > checklist.txt
cat checklist.txt

while [ " While can find $sitename in checklist.txt" ]; do
                qa
         done

这就是我已经尝试过的

while [ -n "$echopl" ]; do
                    qa
             done

while [ 'grep -q $string checklist.txt >/dev/null' ]; do
                qa
         done

while [  "grep -q "$string" checklist.txt" ]; do
                qa2
         done
while grep -q "$string" checklist.txt; do
    qa
done

while grep -q '$string' checklist.txt; do
    qa
done


if grep -q "$string" checklist.txt ; then
  qa
fi

暂时我放置了很多 if 命令:(

ifmorelinks 如果更多链接 如果更多链接 如果更多链接 如果更多链接

Need help with the while command. I want to run a command if there's a $sitename in playlist.txt

Here's my bash:

   cat playlist.txt | grep -e "$sitename" |  sed -e "s/^.*\(http:.*"$sitename".*flv\).*$/\1/g" | sort | uniq > checklist.txt
cat checklist.txt

while [ " While can find $sitename in checklist.txt" ]; do
                qa
         done

that's what i have tried already

while [ -n "$echopl" ]; do
                    qa
             done

while [ 'grep -q $string checklist.txt >/dev/null' ]; do
                qa
         done

while [  "grep -q "$string" checklist.txt" ]; do
                qa2
         done
while grep -q "$string" checklist.txt; do
    qa
done

while grep -q '$string' checklist.txt; do
    qa
done


if grep -q "$string" checklist.txt ; then
  qa
fi

Temporarily I put many if commands :(

ifmorelinks
ifmorelinks
ifmorelinks
ifmorelinks
ifmorelinks

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

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

发布评论

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

评论(2

酷到爆炸 2024-12-28 13:33:05
while grep -q "$string" checklist.txt; do
    qa
done

如果 $string 的字面意思是 $string 而不是 string 变量的值,请使用:

while grep -q '$string' checklist.txt; do
    qa
done
while grep -q "$string" checklist.txt; do
    qa
done

If $string means literally $string and not the value of string variable, use this:

while grep -q '$string' checklist.txt; do
    qa
done
屌丝范 2024-12-28 13:33:05
if grep "$string" checklist.txt >/dev/null 2>&1 ; then
  qa
fi
if grep "$string" checklist.txt >/dev/null 2>&1 ; then
  qa
fi
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文