sed常用命令

1. 字符串替换

sed -i  s#/share/path1#/share/other#g filename

2. 取出文件某几行的内容

sed -n '12,15p' run.sh

你可能感兴趣的:(sed常用命令)