File: test_predict

package info (click to toggle)
herisvm 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 328 kB
  • sloc: sh: 1,471; ruby: 615; makefile: 28
file content (7 lines) | stat: -rwxr-xr-x 143 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
#!/bin/sh

# usage: test_predict <test_file> <model_file> <output_file>

model=`cat "$2"`

awk -v model="$model" '{ print model }' "$1" > "$3"