The following command give a list of all the devices.
% qemu-system-x86_64 -device help
I only want the list of Network devices.
How can I get that?
|
From: | Narcis Garcia |
Subject: | Re: list only particular type of device |
Date: | Fri, 14 Jan 2022 11:05:17 +0100 |
$ qemu-system-x86_64 -device help | sed
-ne '/^Network devices:/,//p' | sed -e '/^$/q'
Narcis Garcia
The following command give a list of all the devices.
% qemu-system-x86_64 -device help
I only want the list of Network devices.
How can I get that?
[Prev in Thread] | Current Thread | [Next in Thread] |