view bin/statfun @ 453:c3bfb45757e9

FreeBSD grep is GNU grep. Well, up to 9.x.
author Edho Arief <edho@myconan.net>
date Fri, 15 Feb 2013 18:18:18 +0900
parents 5bafb912837e
children
line wrap: on
line source

#!/bin/sh
> /tmp/mainlogfun
while read line; do
	filename=$(printf "%s" "${line}" | grep OK\ DOWNLOAD | grep -v "^$" | sed -e 's/.*OK DOWNLOAD: Client "[^"]*", "\(.*\)"..*/\1/')
	basename -- "${filename}" >> /tmp/mainlogfun
done < /srv/log/vsftpd/main.log
grep -v "^$" /tmp/mainlogfun > /root/mainlogfun