source: gs2-extensions/tdb-edit/trunk/src/src/CASCADE-MAKE.sh@ 24003

Last change on this file since 24003 was 23999, checked in by jmt12, 13 years ago

Ensure all the CASCADE-MAKE scripts are run for all the various TDB versions of GDBM utilities

  • Property svn:executable set to *
File size: 259 bytes
Line 
1#!/bin/bash
2
3list=TDB2TXT TDBDEL TDBGET TDBKEYS TDBSET TXT2TDB
4
5for d in $list ; do
6 echo " Running CASCADE-MAKE/$d.sh $*"
7
8 ./CASCADE-MAKE/$d.sh $*
9
10 if [ $? != 0 ] ; then
11 echo " Error encountered running CASCADE-MAKE/$d.sh"
12 exit 1
13 fi
14done
Note: See TracBrowser for help on using the repository browser.