1
0
mirror of https://github.com/balkian/bitter.git synced 2024-09-27 18:51:42 +00:00
bitter/bin/print-replies.sh

15 lines
252 B
Bash
Raw Normal View History

2018-03-19 13:35:07 +00:00
MAX_TAGS=100
function get_text {
while read line
do
echo $line
rtid=$(echo $line | awk -F"," '{print $2}')
text=$(grep -m 1 $rtid *.text.csv)
echo "$line - $text"
done < "/dev/stdin"
}
cat "$@" | get_text