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/votget.sh | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'vendor/voclient/testscripts/votget.sh')
-rw-r--r-- | vendor/voclient/testscripts/votget.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/voclient/testscripts/votget.sh b/vendor/voclient/testscripts/votget.sh new file mode 100644 index 00000000..3bef6f3c --- /dev/null +++ b/vendor/voclient/testscripts/votget.sh @@ -0,0 +1,31 @@ +for file in sia.xml http://www.nrao.edu/~wyoung/test-data/sia.xml +do + echo + echo ---- $file ---- + votget $file + votget -b stuff $file + votget -e one $file + votget -s $file + votget -u VOX:Image_accessReference $file + votget -v $file + votget -x $file + rm -rf testresults + votget -D testresults $file + votget -N 3 $file + votget -d $file + votget -o download.txt $file + votget --base stuff $file + votget --extn one $file + votget --sum $file + votget --ucd VOX:Image_accessReference $file + votget --verbose $file + votget --extract $file + rm -rf testresults + votget --download testresults $file + votget --num 3 $file + votget --debug $file + votget --output download.txt $file + echo + echo -------------- + echo +done |