#!/bin/bash

###########################################################################################
#  package:   pNbody
#  file:      gipy
#  copyright: GPLv3
#             Copyright (C) 2019 EPFL (Ecole Polytechnique Federale de Lausanne)
#             LASTRO - Laboratory of Astrophysics of EPFL
#  author:    Yves Revaz <yves.revaz@epfl.ch>
#
# This file is part of pNbody.
###########################################################################################


GPY =`which gpy`
ARGS =$*

STR = "%run ${GPY} ${ARGS}"

echo running $STR

ipython3 - i - c "$STR"
