-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
feature requestRequesting a new featureRequesting a new feature
Description
Hi, I'm often running multiple commands in dvc run, which can be done by wrapping the command in quotes:
dvc run -d in.txt -o out.txt 'cp in.txt out.txt; for i in {1..10}; do echo ${i} >> out.txt; done'
# Running command:
# cp in.txt out.txt; for i in {1..10}; do echo ${i} >> out.txt; doneIt would be nice if I could input the command using stdout prompt instead, e.g. by running:
dvc run -d in.txt -o out.txt --interactive
# > Enter command:
cp in.txt out.txt; for i in {1..10}; do echo ${i} >> out.txt; done
# Running command:
# cp in.txt out.txt; for i in {1..10}; do echo ${i} >> out.txt; done
Metadata
Metadata
Assignees
Labels
feature requestRequesting a new featureRequesting a new feature