假设磁盘上只有主分区,find当前分区数量的最佳方法是什么?
有没有比以下更好的方法:
fdisk -l > temp #Following returns first column of the last line of temp eg /dev/sda4 lastPart=$(tail -n 1 temp | awk '{print $1}') totalPartitions=$(echo ${lastPart:8})
$ totalPartitionsvariables有时返回NULL 。 这就是为什么,我想知道是否有更可靠的方法来查找当前的分区数量。
关于什么:
totalPartitions=$(grep -c 'sda[0-9]' /proc/partitions)
?