How can I type in another command wherein I am already working in one command prompt? Do suggest me some measures for my problem?
How can I type in another command wherein I am already working in one command prompt? Do suggest me some measures for my problem?
After reading your query there is a solution for your problem, Yes you can open another command while operating other. The shell and version of Windows which you are using will decide on what quality to use for the computer. Following are some of the examples for each edition of Windows and shell. In both of these examples the command would first get to the root of the existing drive and then it will run on the dir command to list the present stuffing of the root.
cd\ | dir
As there is an alternative of using the pipe Microsoft determined to alter it to the ampersand (&) for reasons strange by us. As a result you would need to type the below command to have the same results as prior version of Windows.
cd\ & dir
Bookmarks