source: trunk/examples/demo.bash.in @ 512

Last change on this file since 512 was 512, checked in by dkearney, 18 years ago

made changes to the build system for the rappture package and added a few automake necessary files. also demo.bash was added to the list of files tha
t are automatically generated.

  • Property svn:executable set to *
File size: 473 bytes
Line 
1#!/bin/bash
2#
3# use this script to run several rappture examples:
4#       % ./rundemo
5# when you exit from one example, the next one will start and display on your
6# screen.
7#
8
9rpdir=@prefix@
10
11exdir=$rpdir/examples
12
13dirs="app-fermi/tcl app-fermi/python app-fermi/fortran c-example graph zoo/structure zoo/image zoo/cloud"
14
15echo "7 examples will be shown-->"
16for i in $dirs
17do
18        echo $exdir/$i
19        cd $exdir/$i
20        $rpdir/bin/rappture
21done
22
23cd $exdir/3D
24$rpdir/bin/rerun 3d_test_run.xml
Note: See TracBrowser for help on using the repository browser.