source: tags/asap-3.1.0/admin/generate_data.sh@ 2803

Last change on this file since 2803 was 687, checked in by mar637, 19 years ago

generate aips++ data archive for asap

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 330 bytes
Line 
1#!/bin/sh
2
3if [ "$AIPSPATH" != "" ]; then
4 a_root=`/bin/echo $AIPSPATH | awk '{print $1}'`
5else
6 echo "No aips++ installation found"
7 exit 1
8fi
9
10target="`pwd`/data.tar.gz"
11cd $a_root
12echo "Generating ASAP data archive ${target} from aips++ installation."
13tar cfz ${target} data/ephemerides data/geodetic
14echo "Done."
Note: See TracBrowser for help on using the repository browser.