Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to run a simple one-liner in the Windows CMD prompt to print my %PATH% variable, one entry per line.

I tried this: for /f "delims=;" %a in ("%path%") do echo %a but this only prints the first entry:

Z:\>for /f "delims=;" %a in ("%path%") do echo %a

Z:\>echo c:\python25\.
c:\python25\.

Also as you can see from the output above, this is also printing the echo %a command as well as the output. Is there any way to stop this?

If I try a similar command, I get all the entries, but still get the echo %a output spamming the results. I don't understand why the following prints all entries, but my attempt on %PATH% doesn't. I suspect I don't understand the /F switch.

Z:\>for %a in (1 2 3) do echo %a

Z:\>echo 1
1

Z:\>echo 2
2

Z:\>echo 3
3

Thanks for your help!

share|improve this question

2 Answers

up vote 9 down vote accepted

The simple way is to use

for %a in ("%path:;=";"%") do @echo %~a

This works for all without ; in the path and without " around a single element
Tested with path=C:\qt\4.6.3\bin;C:\Program Files;C:\documents & Settings

But a "always" solution is a bit complicated
EDIT: Now a working variant

@echo off
setlocal DisableDelayedExpansion
set "var=foo & bar;baz<>gak;"semi;colons;^&embedded";foo again!;throw (in) some (parentheses);"unmatched ;-)";(too"

set "var=%var:"=""%"
set "var=%var:^=^^%"
set "var=%var:&=^&%"
set "var=%var:|=^|%"
set "var=%var:<=^<%"
set "var=%var:>=^>%"

set "var=%var:;=^;^;%"
rem ** This is the key line, the missing quote is intention
set var=%var:""="%
set "var=%var:"=""%"

set "var=%var:;;="";""%"
set "var=%var:^;^;=;%"
set "var=%var:""="%"
set "var=%var:"=""%"
set "var=%var:"";""=";"%"
set "var=%var:"""="%"

setlocal EnableDelayedExpansion
for %%a in ("!var!") do (
    endlocal
    echo %%~a
    setlocal EnableDelayedExpansion
)

What the hell I do there?
I try to solve the main problem, that the semicolons inside of quotes should be ignored, and only the normal semicolons should be replaced with ";"

I use the batch interpreter itself to solve this for me.
First I have to make the string safe, escaping all special characters.
Then all ';' are replaced with ^;^; and then the trick begins in the line set var=%var:"=""%" (The missing quote is the key!).
This expands in a way that all escaped characters are lose their escape caret
var=foo & bar;;baz<>gak;;"semi^;^;colons^;^;^&embedded";;foo again!;;...
But only outside of the quotes, so now there is a difference between semicolons outside of quotes ;; and inside ^;^;.
Thats the key.

share|improve this answer
My test string I currently use is foo bar;baz gak;"semi;colons;embedded";foo again;throw (in) some (parentheses);"unmatched ;-)";(too but your longer solution trips over the "unmatched ;-)". +1 for the shorter approach, though; now that I see it it's obvious, alas it didn't come to me. – Јοеу Mar 29 '11 at 12:12
Works great for me - my path is long, but simple (nothing in paths but '\'). %~a strips the quotes from each item, I see. I don't understand what "%path:;=";"%" does - are you able to explain this? (Completely happy that this works for me though, thanks!) – sam Mar 29 '11 at 12:41
"%path:;=";"%" changes c:\bin;c:\another bin into "c:\bin";"c:\another bin". Can you see what's going on here? – bobbogo Mar 29 '11 at 13:47
@bobbogo: I get it now, thanks. The ; -> ";" inside quotes was confusing me. I also didn't realise that the shell would interpret ("a";"b") as separate strings (I thought this had to be (A B)). – sam Mar 29 '11 at 14:02
2  
@bobbogo: The only invalid characters in NTFS file names are / and \0. The userland Windows API restricts that a little further, but that includes only characters used for the shell (`<>&|*?"`). – Јοеу Mar 30 '11 at 10:36
show 10 more comments

I have minor improvements to jeb's clever "always" solution. Currently jeb's solution has the following issues:

  1. If the leading path is enclosed in quotes, then the first output starts with ""
  2. If the trailing path is enclosed in quotes, then the last output ends with ""
  3. If any path contains harmless but non-functional consecutive "", then the output preserves the ""
  4. If var contains consecutive ;; delimiters then outputs ECHO is off

This solution fixes the minor issues, plus it uses 2 fewer substitutions. Also I eliminated the unnecessary repeated enabling/disabling delayed expansion within the loop. (Edit on 2011-10-30 simplified the ENDLOCAL logic)

@echo off
setlocal DisableDelayedExpansion
set "var=%var:"=""%"
set "var=%var:^=^^%"
set "var=%var:&=^&%"
set "var=%var:|=^|%"
set "var=%var:<=^<%"
set "var=%var:>=^>%"
set "var=%var:;=^;^;%"
set var=%var:""="%
set "var=%var:"=""Q%"
set "var=%var:;;="S"S%"
set "var=%var:^;^;=;%"
set "var=%var:""="%"
setlocal EnableDelayedExpansion
set "var=!var:"Q=!"
for %%a in ("!var:"S"S=";"!") do (
  if "!!"=="" endlocal
  if %%a neq "" echo %%~a
)

If you want to see a blank line for each empty path resulting from consecutive ;; delimiters, then the last line of the FOR loop can simply read echo(%%~a instead.

Or perhaps it would be more obvious to display empty paths as "" using:
if %%a=="" (echo "") else echo %%~a

The various empty path fixes work for jeb's simple solution as well.

share|improve this answer
1  
+1 And welcome to stack overflow :-) – jeb Oct 29 '11 at 17:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.