15 lines
131 B
Bash
Executable File
15 lines
131 B
Bash
Executable File
#!/bin/sh
|
|
cd $1
|
|
for f in *
|
|
do
|
|
case $f in
|
|
*.ko)
|
|
insmod $f
|
|
;;
|
|
*)
|
|
$0 $f
|
|
;;
|
|
esac
|
|
done
|
|
|