Skip to content
Snippets Groups Projects
Commit 398353ad authored by Jeremy Auguste's avatar Jeremy Auguste
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
#! /bin/zsh
if [[ $# -ne 2 ]]; then
echo "Usage: $0 environment_name command" >&2
exit 1
fi
environment="$1"
command="$2"
source activate $environment
eval $command
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment