File: runexampledata

package info (click to toggle)
psignifit 2.5.6-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 608 kB
  • sloc: ansic: 5,317; sh: 109; makefile: 41
file content (15 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# This little script will try to run psignifit 
# with the provided example dataset.


BIN=/usr/bin/psignifit
EXAMPLEDIR=/usr/share/doc/psignifit/examples

if test -x $BIN ; then
    $BIN $EXAMPLEDIR/dat $EXAMPLEDIR/prefs
else
    echo 1>&2 "$PROG not found"
    exit 1
fi