#!/bin/bash

if [ $# -lt 2 ]; then
	echo "$0 host port";
	exit
fi

cat << EOF | nc ${1} ${2} >> kismet_client_list.txt
!0 REMOVE TIME
!0 ENABLE CLIENT bssid,mac,type,signal,noise
EOF

