1 2 3 4 5 6 7 8 9 10
post_install() { echo "You must have loaded cpuid and msr modules to work." } op=$1 shift [ "$(type -t "$op")" = "function" ] && $op "$@" # vim:set ts=2 sw=2 et: