#!/bin/sh
case "$2,$3" in  
  merge,)
  sed -i 's/:[0-9]\{2,\}//g' $1
;;  
*) ;;  
esac  

