head	1.4;
access;
symbols
	charm6_1:1.4
	charm_6_0_1:1.4
	charm6_0_1:1.4
	charm6_0:1.4
	ChaNGa_1-0:1.4
	charm5_9:1.4
	charm_5-4-2:1.3
	charm_5-4-1:1.3;
locks; strict;
comment	@# @;


1.4
date	2003.03.20.20.35.21;	author gzheng;	state Exp;
branches;
next	1.3;

1.3
date	2000.12.11.09.31.57;	author milind;	state Exp;
branches;
next	1.2;

1.2
date	2000.12.11.09.29.26;	author milind;	state Exp;
branches;
next	1.1;

1.1
date	2000.12.02.05.43.03;	author olawlor;	state Exp;
branches;
next	;


desc
@@


1.4
log
@make the script recognize the +p8 that is before the executable.
@
text
@#!/bin/sh
#
# Just executes all its arguments.
PATH=.:$PATH
export PATH

args=""
pes=1
while [ $# -gt 0 ]
do
        case $1 in
        +p)
                pes=$2
                shift
                ;;
        +p*)
                pes=`echo $1 | awk '{print substr($1,3)}'`
                ;;
        *)
                args=$args" "$1
                ;;
        esac
        shift
done

$args +p$pes

@


1.3
log
@Added trivial charmruns.
@
text
@d6 22
a27 1
$*
@


1.2
log
@added . to path.
@
text
@a2 1
# Conv-host for pthreads:
@


1.1
log
@Mpi charmrun translates conv-host-style parameters to mpirun-style parameters; Sim/Uth charmruns do nothing.  This should make it easier to run Charm++ programs on a variety of machines.
@
text
@d5 2
@

