mirror of https://github.com/apache/lucene.git
8 lines
139 B
Bash
8 lines
139 B
Bash
|
#!/bin/csh -f
|
||
|
set infile = $1
|
||
|
set outdir = $2
|
||
|
|
||
|
set name = $infile:h:t:uStemmer
|
||
|
|
||
|
exec $0:h/snowball $infile -o $outdir/$name -n $name -java
|