blob: 921b8e6163625d4ad669173a85d28f6b0774bbe9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#! /bin/bash
#
# Directory where sysfs is mounted
SYSFS_DIR=/sys
# handle block devices and their partitions
for i in ${SYSFS_DIR}/block/*; do
# each drive
echo ${i#${SYSFS_DIR}/block/}
# each partition, on each device
for j in $i/*; do
if [ -f $j/dev ]; then
echo ${j#${SYSFS_DIR}} | cut --delimiter='/' --fields=4-
fi
done
done
# all other device classes
for i in ${SYSFS_DIR}/class/*; do
for j in $i/*; do
if [ -f $j/dev ]; then
echo ${j#${SYSFS_DIR}} | cut --delimiter='/' --fields=4-
fi
done
done
|