In unix whenUnix, we can put multiple commands in a single line like this:
$ date ; ls -l ; date I tried a similar thing in windowsWindows:
> echo %TIME% ; dir ; echo %TIME But it printed the time and doesn't execute the command dirdir.
How can iI achieve this?