File: xck

package info (click to toggle)
rnv 1.7.10-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 960 kB
  • ctags: 1,593
  • sloc: ansic: 6,539; lisp: 1,129; sh: 996; makefile: 135; perl: 129; python: 96; sed: 5
file content (16 lines) | stat: -rwxr-xr-x 212 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

CONF=/usr/local/share/rng-c/arx.conf

files=$*

if [ -z "$files" ] ; then
  cat > /tmp/xck.$$
  files=/tmp/xck.$$
fi

for x in $files
do
  xx $x | rnv -q `arx $x $CONF`
done
rm /tmp/xck.$$ 2>/dev/null