Skip to content

Commit

Permalink
Update cli-tutorial.md (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemhenry authored May 1, 2023
1 parent d100fe6 commit 35eb12e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easyCampaign/cli-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ like:

```
# this will take a long time!
for file in transformations/**/*.json; do
for file in transformations/*/*/*.json; do
relpath=${file:16} # strip off "transformations/"
dirpath=${relpath%.*} # strip off final ".json"
openfe quickrun $file -o results/$relpath -d results/$dirpath
Expand All @@ -112,7 +112,7 @@ computing center. Here is an example of a very simple script that will create
and submit a job script for the simplest SLURM use case:

```
for file in transformations/**/*.json; do
for file in transformations/*/*/*.json; do
relpath=${file:16} # strip off "transformations/"
dirpath=${relpath%.*} # strip off final ".json"
jobpath="transformations/${dirpath}.job"
Expand Down

0 comments on commit 35eb12e

Please sign in to comment.