DOS没有多任务~:)
但如果想为了省事在一行上键入两条或多条命令,让它一下自动按顺序执行,可以:
C:\>dir d: & dir e: dir f:
这个 & 代表每个不同命令的分隔符,执行后,它会依次列出 d、e、f盘内容:)
Originally posted by vk at 2006-8-15 11:56:
有没有一个DOS命令可以让几条命令同时运行而不是按顺序运行?
DOS doesn't have multitasking ~ :)
But if you want to be lazy and type two or more commands on one line and let it execute them automatically in sequence, you can:
C:\>dir d: & dir e: dir f:
This & represents the separator for different commands. After execution, it will list the contents of drives d, e, and f in sequence ~ :)
Originally posted by vk at 2006-8-15 11:56:
Is there a DOS command that can run several commands simultaneously instead of running them in sequence?