would have developed the client way more if i was not moving every darn year in that period
would have developed the client way more if i was not moving every darn year in that period

#!/bin/bash
for d in /sys/kernel/iommu_groups/*/devices/*; do
n=${d#*/iommu_groups/*}; n=${n%%/*}
printf 'IOMMU Group %s ' "$n"
lspci -nns "${d##*/}"
done