File: rmmod-all.sh

package info (click to toggle)
trinity 1.9%2Bgit20200331.4d2343bd18c7b-2%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,080 kB
  • sloc: ansic: 32,746; sh: 536; makefile: 164
file content (7 lines) | stat: -rwxr-xr-x 107 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
#!/bin/bash

for j in `lsmod |awk '{ print $1}' | grep -v caif | grep -v Module`
do
  modprobe -r $j
done