歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> SHELL編程

改變shell read命令的隔符

改變shell read命令的隔符   orgIFS=IFS 
  IFS="." 
  ls */.fst/.txt | while read var1 var2 var3 
  do 
  IFS=$orgIFS 
  fstcompile --isymbols=${path1}isymtab.txt --osymbols=${path1}osymtab.txt ${var1}/.fst/.txt ${var1}/.fst 
  fstdraw --isymbols=${path1}isymtab.txt --osymbols=${path1}osymtab.txt ${var1}.fst | gbk2unicode >${var1}.dot 
  IFS="." 
  done
Copyright © Linux教程網 All Rights Reserved