comparison bin/gaseen @ 5643:56dcce63901b

<tswett> revert
author HackBot
date Sun, 21 Jun 2015 02:47:59 +0000
parents 7b39af120554
children
comparison
equal deleted inserted replaced
5642:987c834ab84d 5643:56dcce63901b
1 #!/bin/bash
2 who="${1% }" who="${who,,}"
3 arr=(/var/irclogs/_esoteric/????-??-??.txt)
4 gawk -vw="$who" -vOFS=":" '
5 tolower($2) ~ w{x=$0} ENDFILE{if(x){print substr(FILENAME,1,10), x; exit}}
6 ' < <(for ((i=${#arr[@]}-1; i>=0; i-- )); do echo ${arr[i]}; done)
7