Skip to content
Snippets Groups Projects
Select Git revision
  • 52befab7cb38c34fe09d3f0f735001977555d7a9
  • master default protected
2 results

PIE.php

Blame
  • pylauncher.sh 196 B
    #! /bin/zsh
    
    if [[ $# -lt 2 ]]; then
        echo "Usage: $0 environment_name command [arg1..argn]" >&2
        exit 1
    fi
    
    environment="$1"
    shift 1
    # command="$2"
    
    source activate $environment
    
    eval "$@"