How can I execute a cmd command through windows run prompt box? (win+R) -
how can start program run terminal, right run prompt? (win key + r)
example:
instead of pressing:
win + r, type "cmd", press enter, type "jupyter notebook", press enter
i to
win + r, type "cmd; jupyter notebook", press enter
maybe like:
cmd, jupyter notebook cmd: jupiter notebook cmd; jupyter notebook
is possible?
just type:
cmd /c "jupyter notebook"
this close command prompt after command has been executed. if don't want close command prompt use /k instead of /c.
Comments
Post a Comment