From ced7343ea0bc6e248641a4c35e9a9740712e5b3b Mon Sep 17 00:00:00 2001 From: Ayush Dwivedi Date: Wed, 15 Nov 2017 17:54:53 +0530 Subject: [PATCH] modinfo: add page (#1585) --- pages/linux/modinfo.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/linux/modinfo.md diff --git a/pages/linux/modinfo.md b/pages/linux/modinfo.md new file mode 100644 index 0000000000..a10d7a2ba6 --- /dev/null +++ b/pages/linux/modinfo.md @@ -0,0 +1,11 @@ +# modinfo + +> Extract information about a Linux kernel module. + +- List all attributes of a kernel module: + +`modinfo {{kernel_module}}` + +- List the specified attribute only: + +`modinfo -F {{author|description|license|parm|filename}} {{kernel_module}}`