Blame view

egs/fisher_callhome_spanish/s5/local/fix_stm.sh 274 Bytes
8dcb6dfcb   Yannick Estève   first commit
1
2
3
4
5
6
7
8
9
10
  #!/usr/bin/env bash
  
  # Fixes the CALLHOME stm files
  # Copyright 2014  Gaurav Kumar.   Apache 2.0
  
  data_dir=$1
  
  cat $data_dir/stm | awk '{$1=substr(tolower($1),0,length($1)-4);print;}' > $data_dir/stm_new
  mv $data_dir/stm $data_dir/stm.bak
  mv $data_dir/stm_new $data_dir/stm