在 unix shell 脚本中将换行符替换为空格

发布于 2024-10-18 12:25:52 字数 280 浏览 2 评论 0原文

我有一个包含一些记录的文本文件。每条记录分为 4 行(并不总是 4 行),如示例所示:

----
row1
row2
row3
row4
----
row1
etc...

每行以换行符 (LF) 结尾。 好的,我只需要获取一行记录,用空格替换 LF 字符,例如:

---- row1 row2 row3 row4
---- row1 row2 ...etcetera

对解决方案有任何帮助或建议吗? 提前致谢。

I have a text file containing some records. Each record is splitted in 4 rows (not always 4), like the example:

----
row1
row2
row3
row4
----
row1
etc...

Each row is ended with the Line Feed character (LF).
Ok, I need to obtain the record in only one line, replacing the LF character with a Space, like in example:

---- row1 row2 row3 row4
---- row1 row2 ...etcetera

Any help or suggestion for the solution?
Thanks in advance.

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

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

发布评论

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

评论(6

坦然微笑 2024-10-25 12:25:52

也许这可以工作?

cat FILE | xargs | sed "s/ ---- /\n---- /g"

maybe this can work ?

cat FILE | xargs | sed "s/ ---- /\n---- /g"
初吻给了烟 2024-10-25 12:25:52
tr  "\n" " "  <file | awk '{gsub(/--+/,"\n&");print}'

或全部在一个 awk 中

awk '/--/{print s;printf $0;s=""}!/--/{s=s" "$0}END{print s}' file
tr  "\n" " "  <file | awk '{gsub(/--+/,"\n&");print}'

or all in one awk

awk '/--/{print s;printf $0;s=""}!/--/{s=s" "$0}END{print s}' file
云巢 2024-10-25 12:25:52

一个更简单的方法是这样的

cat text_file | tr '\n' ' ' | sed 's/ ---/\n---/g'

And a much simpler approach would be this

cat text_file | tr '\n' ' ' | sed 's/ ---/\n---/g'
如梦 2024-10-25 12:25:52

您需要知道记录之间的分隔符到底是什么。在您的示例中,它看起来像是“----”,但您也说过记录数量是可变的。

无论如何,最好使用这样的代码来完成类似的事情:

cat source | (
  acc=""
  while read -r line; do
  if test "$line" = "----" -a -n "$acc"; then
    echo "$acc"
    acc="$line"
  else
    test -n "$acc" && { acc="$acc "; }
    acc="${acc}$line"
  fi
  done
  test -n "$acc" && { echo "$acc"; }
)

You need to know what exactly is the separator between the records. In your example it looks like it's '----', but you also said that there is a variable number of records.

Anyway, things like that are best done using code like this:

cat source | (
  acc=""
  while read -r line; do
  if test "$line" = "----" -a -n "$acc"; then
    echo "$acc"
    acc="$line"
  else
    test -n "$acc" && { acc="$acc "; }
    acc="${acc}$line"
  fi
  done
  test -n "$acc" && { echo "$acc"; }
)
等风来 2024-10-25 12:25:52

awk 'BEGIN {RS="----"; FS=“\n”; OFS=" "} FNR==1 {下一个} {$1=RS $1;打印}'输入.文件

awk 'BEGIN {RS="----"; FS="\n"; OFS=" "} FNR==1 {next} {$1=RS $1; print}' input.file

桃酥萝莉 2024-10-25 12:25:52

为此,请使用 awk 而不是 shell 脚本

迭代文本文件并根据行内容执行不同的操作,这正是 awk 的设计目的。

在 21 世纪,shell 脚本应该保持简单,而其他工具则用于复杂的逻辑。

Use awk for this rather than a shell script

Iterating through a text file and doing different things based on the line contents, is precisely what awk was designed to do.

In the 21st century shell scripts should be kept simple and other tools used for complex logic.

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