当前位置:  开发笔记 > 编程语言 > 正文

将包含多个单词的单行拆分为多行,每行包含x个单词

如何解决《将包含多个单词的单行拆分为多行,每行包含x个单词》经验,为你挑选了1个好方法。



1> Inian..:

用于一次xargs处理n记录的一种更简单的方法,在您的情况下就是这样2

xargs -n2 

-n根据man xargs页面的标志是,

-n max-args, --max-args=max-args
      Use at most max-args arguments per command line.  Fewer than max-args arguments 
      will be used if the size (see the -s option) is exceeded, unless the
      -x option is given, in which case xargs will exit.

要替换回原始文件,请执行

xargs -n2 tmpfile; mv tmpfile file

推荐阅读
手机用户2402851155
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有