File: remove

package info (click to toggle)
alsadriver 0.2.0-pre8-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,808 kB
  • ctags: 6,550
  • sloc: ansic: 43,490; sh: 916; makefile: 759; perl: 54
file content (11 lines) | stat: -rwxr-xr-x 182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

LSMOD="/sbin/lsmod"
RMMOD="/sbin/rmmod"

$LSMOD | grep "^snd" | while read line; do \
  XX=`echo $line | cut -d ' ' -f 1`; \
  $RMMOD $XX; \
done
echo "Remove done..."