nl test.tst | sed -n '10p' 这里nl 显示的行数不包括空行,而 sed命令在计算行数时会把空行记录进去,所以打印结果有有出入
2017-10-24
ifconfig eth2 |sed -n '/inet /p'|sed 's/^.*r:\(.*\)B.*$/\1/'
2017-10-16