dashboard
repositories
filestore
activity
search
login
main
/
Scripts
mirror of
https://github.com/Chizi123/Scripts.git
summary
commits
tree
docs
forks
compare
view
|
history
|
commit
|
commitdiff
Add some final instructional comments and timezone variable
Joel Grunbaum
2020-03-22
10ca25091c3e56ec29d6ba4f6345317e110b3053
[Scripts.git]
/
IOMMU.sh
commit
|
author
|
age
64e605
1
#!/bin/bash
JG
2
shopt -s nullglob
3
for g in /sys/kernel/iommu_groups/*; do
4
echo "IOMMU Group ${g##*/}:"
5
for d in $g/devices/*; do
6
echo -e "\t$(lspci -nns ${d##*/})"
7
done;
8
done;