source: examples/runall @ 59ea648

mei_rt2mei_rt2_fix_1meiyap-rt1rt2
Last change on this file since 59ea648 was 9502c50, checked in by Mei <mei@…>, 12 years ago

1) rename examples' rr to run_query
2) updated some doc
3) add decode to creddy --roles and creddy --display --show so it will

show more useful attribute rule string

4) stub in the python script in one of the example directory

  • Property mode set to 100755
File size: 673 bytes
RevLine 
[f0eb81d]1#!/bin/sh
2
3# format,
4#   runall clean
5#   runall README
[9502c50]6#   runall run_query
[f0eb81d]7
8progname=$(basename $0)
9
10if [ $# -eq 0 ]; then
11    echo "Usage: $progname (clean|setup|run)" >&2;
12    exit 1
13fi
[c469edf]14
15for i in `ls -1 `; do
[f0eb81d]16   if ( file $i | grep -F directory | grep -Fq typed ); then
17       cd $i;
18       if [ "$1" = "clean" ]; then
19           printf "\n ==> CLEANING on %s\n" "$i" >& 2 ;
20           rm -rf *.der *.pem creds_dump
21       elif [ "$1" = "setup" ]; then
22           printf "\n ==> SETUP on %s\n" "$i"  >& 2;
[9502c50]23           ./README
[f0eb81d]24       elif [ "$1" = "run" ] ; then
25           printf "\n ==> RUN on %s\n" "$i" ;
[9502c50]26           ./run_query
[f0eb81d]27       fi 
28       cd ..;
[c469edf]29   fi
30done
Note: See TracBrowser for help on using the repository browser.