Skip to content

Commit

Permalink
Update tmfpython.sh
Browse files Browse the repository at this point in the history
Correcting silly errors
  • Loading branch information
abbyevewilliams authored Aug 14, 2024
1 parent 8b71666 commit 54260c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/tmfpython.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ function display_help() {
echo " -v <verbose> Knit ex post evaluation as .Rmd? (true/false)"
echo " -h Display this help message"
echo "Example:"
echo " $0 -p 'gola' -t 2012 -e 2021 -r true -a true"
echo " $0 -i '/maps/aew85/projects' -o '/maps/aew85/tmf_pipe_out -p 1201 -t 2012"
}

# Parse arguments
while getopts "i:o:p:t:e:v:h" flag
do
case "${flag}" in
p) input_dir=${OPTARG};;
t) output_dir=${OPTARG};;
i) input_dir=${OPTARG};;
o) output_dir=${OPTARG};;
p) proj=${OPTARG};;
t) t0=${OPTARG};;
e) eval_year=${OPTARG};;
Expand Down

0 comments on commit 54260c1

Please sign in to comment.