Shell 脚本,搜索文件中的字符串

发布于 2024-08-23 01:07:56 字数 172 浏览 4 评论 0原文

我正在编写一个 shell 脚本,该脚本打开一个文件并需要查找类似 ##FIND_ME## 的标签。我正在搜索的字符串是一个常量(并且只有一个实例。)

一旦我找到该字符串,我需要它从该点开始重新搜索不同的字符串。

我的 *nix 技能有点生疏,应该尝试使用 grep、awk 或 sed 来实现吗?

I'm writing a shell script that opens a file and needs to find a tag like ##FIND_ME##. The string I'm searching for is a constant (and there is only ever one instance of it.)

Once I locate that string, I need it to start a new search for a different string from that point forward.

My *nix skills are a little rusty, should try to implement this using grep, awk, or sed?

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

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

发布评论

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

评论(1

梦途 2024-08-30 01:07:56
awk '/FINDME/{f=1}f&&/NEWSEARCH/{print}' file

f=0
while read -r line
do
 case "$line" in
   *FINDME* ) f=1;;
 esac
 if [ "$f" -eq 1 ] ;then
    case "$line" in
      *NEWSEARCH*) echo "found next tag in: $line";;
    esac
 fi
done <"file"
awk '/FINDME/{f=1}f&&/NEWSEARCH/{print}' file

shell

f=0
while read -r line
do
 case "$line" in
   *FINDME* ) f=1;;
 esac
 if [ "$f" -eq 1 ] ;then
    case "$line" in
      *NEWSEARCH*) echo "found next tag in: $line";;
    esac
 fi
done <"file"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文