发布网友 发布时间:2022-04-25 03:51
共3个回答
热心网友 时间:2023-10-24 06:33
df | grep /boot | awk '{print $5}'热心网友 时间:2023-10-24 06:33
df|grep "/boot" | awk '{ print $5 }' | awk -F % '{ print $1 }'去除百分号只抓数字。
热心网友 时间:2023-10-24 06:33
df|grep "/boot" | awk '{ print $5 }'