diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /vendor/voclient/testscripts/votinfo.sh | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'vendor/voclient/testscripts/votinfo.sh')
-rw-r--r-- | vendor/voclient/testscripts/votinfo.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/vendor/voclient/testscripts/votinfo.sh b/vendor/voclient/testscripts/votinfo.sh new file mode 100644 index 00000000..32a05909 --- /dev/null +++ b/vendor/voclient/testscripts/votinfo.sh @@ -0,0 +1,39 @@ +for file in *.xml http://www.nrao.edu/~wyoung/test-data/ned.xml +do + echo + echo ---- $file ---- + echo + votinfo $file + votinfo -w -b $file + votinfo -w -d $file + votinfo -w -i $file + votinfo -w -n param $file + votinfo -w -n info $file + votinfo -w -n rows $file + votinfo -w -n cols $file + votinfo -w -n resources $file + votinfo -w -p $file + votinfo -w -s $file + votinfo -w -v $file + echo + echo -------------- + echo + echo + echo ---- $file ---- + echo + votinfo $file + votinfo --warn --brief $file + votinfo --warn --description $file + votinfo --warn --info $file + votinfo --warn --numberOf=param $file + votinfo --warn --numberOf=info $file + votinfo --warn --numberOf=rows $file + votinfo --warn --numberOf=cols $file + votinfo --warn --numberOf=resources $file + votinfo --warn --param $file + votinfo --warn --size $file + votinfo --warn --verbose $file + echo + echo -------------- + echo +done |