一行同时使用 sed 和 bc ?

发布于 2024-09-03 06:43:08 字数 263 浏览 8 评论 0原文

我想在 sed 中字符串末尾的最后一个值上加一。 例如

cat 0809_data.csv |sed -e 's/\([0-9]\{6\}\).*\(,[^,]*$\)/\1\2/g'| export YEARS = $(echo `grep -o '[^,]*$' + 1`|bc)

我正在思考 123456、kjhsflk、lksjgrlks、2.8 -> 123456, 3.8

这在 awk 中会更合理/可行吗?

I want to add one to the last value at the end of a string in sed.
I'm thinking along the lines of

cat 0809_data.csv |sed -e 's/\([0-9]\{6\}\).*\(,[^,]*$\)/\1\2/g'| export YEARS = $(echo `grep -o '[^,]*

e.g. 123456, kjhsflk, lksjgrlks, 2.8 -> 123456, 3.8

Would this be more reasonable/feasible in awk?

+ 1`|bc)

e.g. 123456, kjhsflk, lksjgrlks, 2.8 -> 123456, 3.8

Would this be more reasonable/feasible in awk?

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

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

发布评论

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

评论(1

瘫痪情歌 2024-09-10 06:43:08

这应该可行:

years=$(awk -F, 'BEGIN{ OFS=", "} {print $1, $4+1}' 0809_data.csv)

尝试使用 sed 并对部分结果进行算术运算确实很尴尬。你必须把绳子拉开并进行数学计算,然后将所有东西重新组合在一起。 AWK 干脆利落地做到了这一点,没有任何大惊小怪。

请注意, cat 不是必需的(即使在与您问题中的命令类似的命令中使用 sed ),并且可能不需要导出变量,除非您调用另一个脚本并需要它能够将其作为“全局”变量进行访问。另外,shell 通常执行整数数学运算,因此除非需要浮点数,否则不需要使用 bc 。

This should work:

years=$(awk -F, 'BEGIN{ OFS=", "} {print $1, $4+1}' 0809_data.csv)

It would be really awkward to try to use sed and do arithmetic with part of the result. You'd have to pull the string apart and do the math and put everything back together. AWK does that neatly without any fuss.

Notice that cat is not necessary (even using sed in a command similar to the one in your question) and it's probably not necessary to export the variable unless you're calling another script and need it to be able to access it as a "global" variable. Also, shells generally do integer math so you don't need to use bc unless you need floats.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文