From 785f8843e07855db648fc34eacbc9c8bac63ac01 Mon Sep 17 00:00:00 2001 From: Jorge Orpinel Date: Mon, 4 Jan 2021 15:38:57 -0600 Subject: [PATCH] cmd: no need for --in/out in run cmd examples per https://github.com/iterative/dvc.org/pull/2075#pullrequestreview-562344027 --- content/docs/command-reference/run.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/command-reference/run.md b/content/docs/command-reference/run.md index bcceae3bf6..df57eb69b9 100644 --- a/content/docs/command-reference/run.md +++ b/content/docs/command-reference/run.md @@ -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 @@ -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