view bin/statfun @ 749:3cacb4270864 default tip

[bashrc] hg grep now does the expected thing, no need for custom alias
author nanaya <me@nanaya.net>
date Tue, 02 Sep 2025 22:43:45 +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