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

whats the easiest way of converting all backslashes to forward in a path in a batch file, since I need to use bash for execution.

share|improve this question
... Wich one is it? Batch or Bash? Batch is for Windows, Bash is for Linux (and Mac?). – RobinJ May 31 '11 at 15:19
I am running batch(windows), need to build a make file using Bash( on windows, i have bash set up on the machine) – remo May 31 '11 at 15:20
Ah, something lik Win-Bash, I presume? So... You want to read a file (using MS-DOS Batch), and replace all occurances of \ to /. Is that correct? – RobinJ May 31 '11 at 15:22
@RobinJ: Yes, that's correct – remo May 31 '11 at 15:27

2 Answers

up vote 10 down vote accepted
SET "string=D:\path\to\folder"
ECHO %string:\=/%

Basically, you need first to store the string value into an environment variable, then use the following template:

%variable:str1=str2%

to replace every occurrence of str1 in variable with str2.

You can always remind yourself about this pattern by invoking SET /? from the command prompt.

share|improve this answer
echo 'C:\Program Files\Program' | sed -e 's/\\/\//g'
share|improve this answer
I am getting a "sed: -e expression #1, char 8: unterminated `s' command" error – remo May 31 '11 at 15:31
"echo 'C:\Program Files\Program' | sed -e s/\\/\//g" works good – remo Jun 2 '11 at 18:49

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.