Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Feb 1st, 2008 | Syntax: None | Size: 0.26 KB | Hits: 82 | Expires: Never
Copy text to clipboard
  1. # hier werden alle *.conf in utf-8 convertiert
  2.  indir="channels"
  3.  outdir="/tmp"
  4.  const=".conf"
  5.  ls $indir | grep $const |
  6.  {
  7.     while read infile
  8.      do
  9.         iconv -f iso8859-5 -t utf-8 $indir/$infile -o $outdir/$infile
  10.         mv /tmp/*.conf $indir
  11.      done
  12.  }