File: tvary

package info (click to toggle)
iczech 19990918-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 964 kB
  • ctags: 7
  • sloc: sh: 61; makefile: 56; perl: 29
file content (10 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
while [ $# -ne 0 ]; do
  if [ $1 = "-f" ]; then
    shift
    munchlist -c czech.aff -l munch $1
  else
    echo $1 | munchlist -c czech.aff -l munch -
  fi
  shift
done