#! /bin/sh
#
for file in "$@"; do
   if test $# -gt 1; then echo '::::::::::'; echo "$file"; echo '::::::::::'; fi
   sed -e 's/^.*\(likelihood =[^,]*,[^,]*\),.*$/\1/' $file
done
