summaryrefslogtreecommitdiffstats
path: root/filterhost
blob: 9d324e9f89ff4cac562cfacb65fd851608fdd43b (plain) (blame)
1
2
3
4
5
6
#!/bin/sh

temp=$(mktemp --tmpdir=$(dirname "$0") .utmp.XXXXXXXXXX)
./utmpr -b "$2" | grep -v "^.*	.*	.*	.*	.*	.*$1.*$" | ./utmpr -t -o "$temp"
cat "$temp" > "$2"
rm -f "$temp"