This is a great page with som nice bash scripts describing how to remove unwanted modules from your kernel.
Tags: bash, cut, grep, kernel, lsmod, modinfo, sed, xargs
Posted by Hans-Henry Jakobsen
ifconfig eth0 | awk '/inet addr/{print $2}' | cut -d: -f2
Posted by Hans-Henry Jakobsen
Legg følgende inn i fila iplist.sh
#!/bin/bash
# filename: iplist.sh
# usage: ./iplist.sh 192.168.1.0/24 > iplist.txt
nmap -sL $1 --randomize_hosts | grep '^Host' | cut -d '(' -f 2 | cut -d
')' -f 1
Posted by Hans-Henry Jakobsen