0
点赞
收藏
分享

微信扫一扫

使用read格式化输出所有分区的挂载信息

静守幸福 2022-06-28 阅读 29
df -h | grep ^/ | while read name size other
do
echo "${name} ${size}"
done

使用read格式化输出所有分区的挂载信息_linux


举报

相关推荐

0 条评论