Skip to content

Commit

Permalink
cmd: no need for --in/out in run cmd examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeorpinel committed Jan 4, 2021
1 parent 4781b64 commit 785f884
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/docs/command-reference/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ $ cd more_stages/
$ dvc run -n process_data \
-d data.in \
-o result.out \
./my_script.sh --in data.in --out result.out
./my_script.sh data.in result.out
$ tree ..
.
├── dvc.yaml
Expand Down Expand Up @@ -379,7 +379,7 @@ Execute an R script that parses the XML file:
$ dvc run -n parse \
-d parsingxml.R -d data/Posts.xml \
-o data/Posts.csv \
Rscript parsingxml.R --in data/Posts.xml --out data/Posts.csv
Rscript parsingxml.R data/Posts.xml data/Posts.csv
```

To visualize how these stages are connected into a pipeline (given their outputs
Expand Down

0 comments on commit 785f884

Please sign in to comment.