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

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

问题描述

我有一个用逗号分隔的id文件.我正在尝试用新行替换逗号.我尝试过:

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

sed 's/,/\n/g' file

,但是它不起作用.我想念什么?

but it is not working. What am I missing?

推荐答案

使用tr代替:

tr , '\n' < file

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

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