外壳脚本。 我的脚本中的命令替换问题

发布于 2024-07-26 08:10:01 字数 575 浏览 6 评论 0原文

在我的 Cygwin 和 Linux 盒子 (Debian) 上,我都遇到了同样的问题:

我正在使用某种格式化 id 的 shell 脚本,我想在斜杠出现 (/) 之前添加反斜杠 ()。

我的 sed 脚本在我的终端上运行良好:

# export someid="314-12345/08"
# echo "${someid}" | sed 's/\//\\\//'

输出:

314-12345\/08

但如果我运行 命令替换

# someidformatted=`echo "${someid}" | sed 's/\//\\\//'`
sed: -e expression #1, char 9: unknown option to `s'

我在这里缺少什么?

先感谢您。

On both, my Cygwin and my Linux box (Debian) I'm experiencing same issue:

I'm working in a shell script with some kind of formatting ids, I want to add a backslash () before a slash occurrence (/).

My sed script is working well at my terminal:

# export someid="314-12345/08"
# echo "${someid}" | sed 's/\//\\\//'

Output:

314-12345\/08

But not as well if i run command substitution:

# someidformatted=`echo "${someid}" | sed 's/\//\\\//'`
sed: -e expression #1, char 9: unknown option to `s'

What I'm missing here?

Thank you in advance.

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

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

发布评论

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

评论(2

咋地 2024-08-02 08:10:02

没有义务使用 / 作为 sed 的分隔符。

s/a/c/

可能会变成

s#a#c#

在你的情况下

someidformatted=`echo "${someid}" | sed 's#\/#\\\/#'`

这样:会完成这项工作。

我只能猜测问题是由于缺少/转义引起的。

There's no obligation to use / as the separator for sed.

s/a/c/

May become

s#a#c#

So in your case:

someidformatted=`echo "${someid}" | sed 's#\/#\\\/#'`

would do the job.

I can only guess that the problem was caused by some lack of / escaping.

指尖上得阳光 2024-08-02 08:10:02

这是正在发生的事情。 从 bash(1) 手册页中,强调我的:

当使用旧式反引号形式的替换时,反斜杠保留其字面含义除非后跟 $、' 或 \。 前面没有反斜杠的第一个反引号终止命令替换。 当使用$(command)形式时,括号内的所有字符组成命令; 没有一个受到特殊对待。

因此,与普通命令相比,您很可能需要更多的反斜杠来进行命令替换。
您可以通过设置 set -x 进行调试:

# someidformatted=`echo "${someid}" | sed 's/\//\\\//'`
++ echo 314-12345/08
++ sed 's/\//\\//'
sed: 1: "s/\//\\//": bad flag in substitute command: '/'
+ someidformatted=
# someidformatted=$(echo "${someid}" | sed 's/\//\\\//')
++ echo 314-12345/08
++ sed 's/\//\\\//'
+ someidformatted='314-12345\/08'

因此,您可以看到 \\ 的出现变成了 \。 添加更多反斜杠是可行的,但我更喜欢 $(command) 形式:

# someidformatted=$(echo "${someid}" | sed 's/\//\\\//')

Here's what is going on. From the bash(1) man page, emphasis mine:

When the old-style backquote form of substitution is used, backslash retains its literal meaning except when followed by $, ‘, or \. The first backquote not preceded by a backslash terminates the command substitution. When using the $(command) form, all characters between the parentheses make up the command; none are treated specially.

So most likely you need more backslashes for the command substitution than a plain command.
You can debug this by setting set -x:

# someidformatted=`echo "${someid}" | sed 's/\//\\\//'`
++ echo 314-12345/08
++ sed 's/\//\\//'
sed: 1: "s/\//\\//": bad flag in substitute command: '/'
+ someidformatted=
# someidformatted=$(echo "${someid}" | sed 's/\//\\\//')
++ echo 314-12345/08
++ sed 's/\//\\\//'
+ someidformatted='314-12345\/08'

So, you can see that an occurrence of \\ gets turned to \. Adding more backslashes works, but I prefer the $(command) form:

# someidformatted=$(echo "${someid}" | sed 's/\//\\\//')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文