我正在尝试仅从http://mirrorlist.centos.org/?release=6.4&arch=x86_64&repo=os 将前缀“http://”和“ftp://”截断到第一个“/”字符只产生一个列表
yum.phx.singlehop.com
mirror.nyi.net
bay.uchicago.edu
centos.mirror.constant.com mirror.teklinks.com
centos.mirror.netriplex.com
centos.someimage.com
mirror.sanctuaryhost.com
mirrors.cat
。 pdx.edu
mirrors.tummy.com
我在 stackoverflow 中搜索了 sed 方法,但仍然遇到问题。
我尝试使用 sed 执行此操作,
curl "http://mirrorlist.centos.org/?release=6.4&arch=x86_64&repo=os" | sed '/:\/\//,/\//p'
但看起来它没有做任何事情。你能给我一些建议吗?