#!/bin/sh

log=${1:-"log"}
types=${2:-"types"}

grep 913 $log | awk '{print $2}' | cut -f1 -d: | sort | uniq > $types
 
