Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

powershell - Echo %path% on separate lines?

Using the windows command prompt, can I echo %path% and get the resulting paths on separate rows? Something like this but for windows:

echo $path | tr ':' '
'

Can I do this with vanilla cmd or do I need powershell or js scripting?

Example echo %path% output:

C:WINDOWSsystem32;C:WINDOWS;C:WINDOWSSystem32Wbem;C:Program FilesMicrosoft SQL Server80ToolsBinn;C:Program FilesMicrosoft SQL Server90DTSBinn;C:Program FilesMicrosoft SQL Server90Toolsinn;C:Program FilesMicrosoft SQL Server90ToolsBinnVSShellCommon7IDE;C:Program FilesMicrosoft Visual Studio 8Common7IDEPrivateAssemblies;

Desired output:

C:WINDOWSsystem32;
C:WINDOWS;
C:WINDOWSSystem32Wbem;
C:Program FilesMicrosoft SQL Server80ToolsBinn;
C:Program FilesMicrosoft SQL Server90DTSBinn;
C:Program FilesMicrosoft SQL Server90Toolsinn;
C:Program FilesMicrosoft SQL Server90ToolsBinnVSShellCommon7IDE;
C:Program FilesMicrosoft Visual Studio 8Common7IDEPrivateAssemblies;
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try:

 ($env:Path).Replace(';',"`n")

or

$env:path.split(";")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...