[PATCH 1/2] Enlist running kernel modules information

From: Bhaskar Chowdhury
Date: Tue Dec 03 2019 - 04:49:30 EST


This is new file to show running kernel modules list.One line bash
script.

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@xxxxxxxxx>
---
scripts/kernel_modules_info.sh | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
create mode 100755 scripts/kernel_modules_info.sh

diff --git a/scripts/kernel_modules_info.sh b/scripts/kernel_modules_info.sh
new file mode 100755
index 000000000000..f005c47a3aa6
--- /dev/null
+++ b/scripts/kernel_modules_info.sh
@@ -0,0 +1,23 @@
+#!/bin/bash -
+#SPDX-License-Identifier: GPL-2.0
+#===============================================================================
+#
+# FILE: kernel_modules_info.sh
+#
+# USAGE: ./kernel_modules_info.sh
+#
+# DESCRIPTION: Running kernel modules information.
+#
+# OPTIONS: ---
+# REQUIREMENTS: awk
+# BUGS: ---
+# NOTES: ---
+# AUTHOR: Bhaskar Chowdhury (https://about.me/unixbhaskar), unixbhaskar@xxxxxxxxx
+# ORGANIZATION: Independent
+# CREATED: 12/03/2019 13:52
+# REVISION: ---
+#===============================================================================
+
+set -o nounset # Treat unset variables as an error
+
+awk '{print $1}' "/proc/modules" | xargs modinfo | awk '/^(filename|desc|depends)/'
--
2.24.0