Skip to content

Commit

Permalink
Add -s to curl commands
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreso committed Sep 13, 2024
1 parent 33d7aab commit a53531d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Hackathon.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# ERT GUI Hackathon

```bash
ert test_run poly.ert | curl -XPOST -H "Content-type: application/json" http://127.0.0.1:8000/experiments/ -d @-
ert ensemble_experiment poly.ert --realizations 0-99 | curl -XPOST -H "Content-type: application/json" http://127.0.0.1:8000/experiments/ -d @-
ert ensemble_smoother poly.ert --realizations 0-99 | curl -XPOST -H "Content-type: application/json" http://127.0.0.1:8000/experiments/ -d @-
ert es_mda poly.ert --realizations 0-99 --target-ensemble ensemble_%d | curl -XPOST -H "Content-type: application/json" http://127.0.0.1:8000/experiments/ -d @-
ert iterative_ensemble_smoother poly.ert --realizations 0-99 --target-ensemble ensemble_%d --num-iterations 4 | curl -XPOST -H "Content-type: application/json" http://127.0.0.1:8000/experiments/ -d @-
ert test_run poly.ert | curl -s -XPOST -H "Content-type: application/json" http://127.0.0.1:8000/experiments/ -d @-
ert ensemble_experiment poly.ert --realizations 0-99 | curl -s -XPOST -H "Content-type: application/json" http://127.0.0.1:8000/experiments/ -d @-
ert ensemble_smoother poly.ert --realizations 0-99 | curl -s -XPOST -H "Content-type: application/json" http://127.0.0.1:8000/experiments/ -d @-
ert es_mda poly.ert --realizations 0-99 --target-ensemble ensemble_%d | curl -s -XPOST -H "Content-type: application/json" http://127.0.0.1:8000/experiments/ -d @-
ert iterative_ensemble_smoother poly.ert --realizations 0-99 --target-ensemble ensemble_%d --num-iterations 4 | curl -s -XPOST -H "Content-type: application/json" http://127.0.0.1:8000/experiments/ -d @-
```

```bash
Expand Down

0 comments on commit a53531d

Please sign in to comment.