在 MacOS 上用 sed 中的换行符替换逗号? [英] Replace comma with newline in sed on MacOS?

查看:23
本文介绍了在 MacOS 上用 sed 中的换行符替换逗号?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个以逗号分隔的字符串文件.我正在尝试用新行替换逗号.我试过了:

I have a file of strings that are comma separated. I'm trying to replace the commas with a new line. I've tried:

sed 's/,/
/g' file

但它不起作用.我错过了什么?

but it is not working. What am I missing?

推荐答案

使用 tr 代替:

tr , '
' < file

这篇关于在 MacOS 上用 sed 中的换行符替换逗号?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆