I found that I can use $env:Path within PowerShell to see my current system path. However, everything runs together on one line. Is there a way to pipe the output of $env:Path to another command that will print each path value separately (i.e. printing on a new line for everything that is delimited by a semi-colon)?
Currently it prints something like this:
C:\Some Test Directory\With\Some\Files\In\It;C:\Some Test Directory\With\Some\Files\In\It;C:\Some Test Directory\With\Some\Files\In\It;C:\Some Test Directory\With\Some\Files\In\It;C:\Some Test Directory\With\Some\Files\In\It;
I’d rather have something like this:
C:\Some Test Directory\With\Some\Files\In\It
C:\Some Test Directory\With\Some\Files\In\It
C:\Some Test Directory\With\Some\Files\In\It
C:\Some Test Directory\With\Some\Files\In\It
C:\Some Test Directory\With\Some\Files\In\It
Works for me.