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/voiminfo.sh | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'vendor/voclient/testscripts/voiminfo.sh')
-rw-r--r-- | vendor/voclient/testscripts/voiminfo.sh | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/vendor/voclient/testscripts/voiminfo.sh b/vendor/voclient/testscripts/voiminfo.sh new file mode 100644 index 00000000..992f4f81 --- /dev/null +++ b/vendor/voclient/testscripts/voiminfo.sh @@ -0,0 +1,42 @@ +for file in dpix.fits mef.fits sif.fits ypix.fits ypix2.fits ypix3.fits +do + echo + echo ---- $file ---- + echo + voiminfo -a $file + voiminfo -i $file + voiminfo -b $file + voiminfo -c $file + voiminfo -n $file + voiminfo -s $file + voiminfo --all $file + voiminfo --info $file + voiminfo --box $file + voiminfo --corners $file + voiminfo --naxes $file + voiminfo --sex $file + echo + echo --------------- + echo +done +for file in dpix.fits mef.fits sif.fits ypix.fits ypix2.fits ypix3.fits +do + echo + echo ---- $file ---- + echo + voiminfo -a http://www.nrao.edu/~wyoung/test-data/$file + voiminfo -i http://www.nrao.edu/~wyoung/test-data/$file + voiminfo -b http://www.nrao.edu/~wyoung/test-data/$file + voiminfo -c http://www.nrao.edu/~wyoung/test-data/$file + voiminfo -n http://www.nrao.edu/~wyoung/test-data/$file + voiminfo -s http://www.nrao.edu/~wyoung/test-data/$file + voiminfo --all http://www.nrao.edu/~wyoung/test-data/$file + voiminfo --info http://www.nrao.edu/~wyoung/test-data/$file + voiminfo --box http://www.nrao.edu/~wyoung/test-data/$file + voiminfo --corners http://www.nrao.edu/~wyoung/test-data/$file + voiminfo --naxes http://www.nrao.edu/~wyoung/test-data/$file + voiminfo --sex http://www.nrao.edu/~wyoung/test-data/$file + echo + echo --------------- + echo +done |