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

Last change on this file since 1044 was 1018, checked in by gah, 16 years ago

Massive changes: New directory/file layout

  • Property svn:executable set to *
File size: 539 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
9PYTHONPATH=@prefix@/lib/python2.5/site-packages
10export PYTHONPATH
11rpdir=@prefix@
12
13exdir=$rpdir/examples
14
15dirs="app-fermi/tcl app-fermi/python app-fermi/fortran c-example graph zoo/structure zoo/image zoo/cloud"
16
17echo "7 examples will be shown-->"
18for i in $dirs
19do
20        echo $exdir/$i
21        cd $exdir/$i
22        $rpdir/bin/rappture
23done
24
25cd $exdir/3D
26$rpdir/bin/rerun 3d_test_run.xml
Note: See TracBrowser for help on using the repository browser.