#!/usr/bin/env python

import pscripts.chroot_helper as crh 
import argparse

# cp_ldd_deps <executable> <new_dir>
# cp_ldd_deps bash /chroot/test1

parser = argparse.ArgumentParser(description='Help with creating a chroot jail')
parser.add_argument('executable', help='specify the executable that you want added to your chroot jail dir.')
parser.add_argument('chroot_jail', help='specify your chroot jail dir.')
args = parser.parse_args()
crh.copy_exe( args.executable, args.chroot_jail)
