tchakravarty
tchakravarty

Reputation: 10954

Format cmd.exe path output

How would I pretty print the output from the cmd.exe shell command path so that each element is printed on a new line? I guess I would have to pipe it through some text munger that adds a newline wherever it finds the ; character, but being a noob, I have no idea how to do this.

Also, I think I would have to take care of the macros like %HOME% differently.

Upvotes: 1

Views: 321

Answers (1)

Lars Rohrbach
Lars Rohrbach

Reputation: 481

I've found this as an option worth noting:

 echo %path:;=&echo.%

Upvotes: 10

Related Questions