Capitalize abbreviations

pull/99/head
terminalforlife 4 years ago
parent c4ea4f09d0
commit 7d524d8205

@ -1,33 +1,33 @@
# lshw
# Get hardware information on Linux
# Generate full information report about all detected hardware
# Generate full information report about all detected hardware.
lshw
# Display hardware information in short
# Display brief hardware information.
lshw -short
# Display only memory information
# Display only memory information.
lshw -short -class memory
# Display processor information
# Display processor information.
lshw -class processor
# Display the disk drives with the disk class
# Display the disk drives with the disk class.
lshw -short -class disk
# Display information about the partitions and controllers also,
# specify the storage and volume class along with the disk class
# specify the storage and volume class along with the disk class.
lshw -short -class disk -class storage -class volume
# Network adapter information
# Network adapter information.
lshw -class network
# Display the address details of pci, usb, scsi and ide devices
# Display the address details of PCI, USB, SCSI and IDE devices.
lshw -businfo
# Generate report in html format
# Generate report in HTML format.
lshw -html > hardware.html
# Generate report in xml format
# Generate report in XML format.
lshw -html > hardware.html

Loading…
Cancel
Save