#!/usr/bin/env python
from itsim_scripts import __path__ as module_pathes
from pathlib import Path
from os import execv
from sys import argv

bin_file = str(Path(module_pathes[0]).parent / 'bash' / 'simplify_shapefile')
args = [bin_file, *argv]
execv(bin_file, args)
