`#!/bin/bash export USE_USER="abal" if [[ -z "${USE_USER}" ]]; then echo "USE_USER not set. Please source the setup.sh" exit 1 fi export JOB_DIR=$_CONDOR_JOB_IWD cd $JOB_DIR mkdir tmp cd tmp/ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh chmod +x Miniconda3-latest-Linux-x86_64.sh ./Miniconda3-latest-Linux-x86_64.sh -b -p ${PWD}/miniconda3 `