Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Oops, this shouldn't have make it to the repository.
[simgrid.git] / buildtools / Cmake / chdir_run.sh
1 #! /bin/sh
2 # This script goes to the directory specified as first argument, and executes the rest of its arguments
3 # It ought to be a solution to specify the PWD of commands in CTest, but I didn't find it yet
4
5
6 cd $1
7 shift
8 exec "$@"