mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
6 lines
118 B
Plaintext
6 lines
118 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
for dev in "$@"; do
|
||
|
sudo virsh attach-device Windows-10 /var/lib/libvirt/configs/hostdev-$dev.xml
|
||
|
done
|