mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
7 lines
100 B
Bash
7 lines
100 B
Bash
#!/bin/bash
|
|
|
|
for d in $(ls -1 /dev/nvme?n1); do
|
|
echo $d
|
|
nvme id-ns -H $d |grep -i relative
|
|
done
|