tcondfail - numtools - perform numerical operations on vectors and matrices in unix pipes
HTML git clone git://src.adamsgaard.dk/numtools
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
tcondfail (72B)
---
1 #!/usr/bin/awk -f
2 BEGIN {
3 if (ARGV[1] < 1.5)
4 exit 0
5 else
6 exit 1
7 }