转换文件每行一个字
我想将包含单词、空格分隔的文本文件转换为文件,其中每个单词出现在单独的行上将
sdf sdfsd= sdfsdf
sdfsdf
成为
sdf
sdfsd=
sdfsdf
sdfsdf
谢谢
I would like to convert a text file containing words, space separate to a file where each word appears on a separate line
sdf sdfsd= sdfsdf
sdfsdf
will become
sdf
sdfsd=
sdfsdf
sdfsdf
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:
解释:
感谢@Dummy00001提出
+
想法。Try this:
Explained:
Thanks to @Dummy00001 for the
+
idea.输入以下命令:
:%s/ /\r/g
或任何适合您环境的回车符。 \r 代表 *nix,\n 代表 Windows。
enter the following command:
:%s/ /\r/g
or whatever the carriage return is for your environment. \r for *nix, \n for windows.
这也很容易编写为 shell 脚本,您不需要
sed
或awk
:This is also easy to write as a shell script, you don't need
sed
orawk
: