sed 给了我 ":意外的 EOF (pending }'s) 错误,我不知道为什么 [英] sed gives me ": unexpected EOF (pending }'s) error and I have no idea why

查看:80
本文介绍了sed 给了我 ":意外的 EOF (pending }'s) 错误,我不知道为什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将 GNU sed 命令移植到 BSD sed(在 OSX 中).命令是:

I'm trying to port a GNU sed command to BSD sed (in OSX). The command is:

cat -- "$1" | sed -n -e "\${/^#/H;x;/${tapPrintTapOutputSedPattern}/p;}" \
-e "/${tapPrintTapOutputSedPattern}/{x;/${tapPrintTapOutputSedPattern}/p;b;}" \
-e "/^#/{H;b;}" \
-e "x;/${tapPrintTapOutputSedPattern}/p" \
-e "/^Bail out!/q"

它适用于 GNU sed,但 BSD sed 出现此错误:

It works on GNU sed, but BSD sed gives this error:

sed: 2: "/^Bail out!/q
": unexpected EOF (pending }'s)

这是变量扩展后的命令,以防万一:

This is the command after the variable expansions, in case it's relevant:

cat -- "test021.tap" | sed -n \
-e "\${/^#/H;x;/^not ok\|^ok \([0-9]\+ \)\?# [tT][oO][dD][oO]\|^Bail out!/p;}" \
-e "/^not ok\|^ok \([0-9]\+ \)\?# [tT][oO][dD][oO]\|^Bail out!/{x;/^not ok\|^ok \([0-9]\+ \)\?# [tT][oO][dD][oO]\|^Bail out!/p;b;}" \
-e "/^#/{H;b;}" \
-e "x;/^not ok\|^ok \([0-9]\+ \)\?# [tT][oO][dD][oO]\|^Bail out!/p" \
-e "/^Bail out!/q"

关于为什么/如何解决它的任何想法?

Any ideas about why/how to fix it?

干杯!

推荐答案

尝试使用换行符代替分号,至少在语句中的分支命令 (b) 之前.看看这是否有效:

Try using newlines instead of a semicolons, at least before the branch commands (b) in the statements. See if this works:

sed -n "
  \${
    /^#/H
    x
    /${tapPrintTapOutputSedPattern}/p
  }
  /${tapPrintTapOutputSedPattern}/{
    x
    /${tapPrintTapOutputSedPattern}/p
    b
  }
  /^#/{
    H
    b
  }
  x
  /${tapPrintTapOutputSedPattern}/p
  /^Bail out!/q
" "$1"

这篇关于sed 给了我 ":意外的 EOF (pending }'s) 错误,我不知道为什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆