-
求助 关于 linux shell 编程输出的问题 echo 与 sed 结合使用字符串发生覆盖
写了大概这么个东西,为了读 XML 文件并且加点东西:#!/bin/shsed -n 's/.*>\(.*\)<\/name>/\1/p' test.xml|while read linedoecho $lineecho $line:123456done 结果输出时候单 echo $line 没有问题,但是第二个 echo , 123456 的部分覆盖掉了$line 的开头部分,求各位...
-
Alpine Linux 3.3.0 released
http://www.alpinelinux.org/posts/Alpine-3.3.0-released.html Alpine Linux is a community developed operating system designed for x86 routers, firewalls, VPNs, VoIP boxes and servers. It was desi...
-
linux sed命令笔记
sed-ifilename#这里是将filename的文件中所有的char替换为charasedfile#删除空白行sedfile#删除第二行sedfile#删除第二行到最后一行sedfile#删除最...