标签:lin linu ges docke linux sed images gre sed -n inux
一、获取最后一行内容
docker images | grep "none" | sed -n ‘$‘p
二、获取第一行内容
docker images | grep "none" | sed -n ‘1‘p
三、获取第一行到最后一行内容
docker images | grep "none" | sed -n ‘1,$‘p
标签:lin linu ges docke linux sed images gre sed -n inux
原文地址:https://www.cnblogs.com/Presley-lpc/p/9337482.html