Skip to content

Instantly share code, notes, and snippets.

@praton1729
Last active February 20, 2019 11:00
Show Gist options
  • Save praton1729/25132d523ab965c5a185e0211d9ebfcd to your computer and use it in GitHub Desktop.
Save praton1729/25132d523ab965c5a185e0211d9ebfcd to your computer and use it in GitHub Desktop.
Driver description printer
#! /bin/bash
lsmod | awk '{print $1 }' | tail -n +2 | xargs -I {} ./print_description {}
#! /bin/bash
description=`modinfo $1 | grep -m 1 -i description | cut -d ' ' -f 3-`
printf "%-20s : %s\n" "$1" "$description"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment