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

Last change on this file since 1464 was 1055, checked in by gah, 16 years ago
  • Property svn:executable set to *
File size: 550 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 ; do
19    echo $exdir/$i
20    cd $exdir/$i
21    $rpdir/bin/rappture
22done
23
24cd $exdir/3D
25$rpdir/bin/rerun 3d_test_run.xml
Note: See TracBrowser for help on using the repository browser.