我必须使用 mingw32 在生成文件中将具有正斜杠的文件名转换为具有反斜杠的文件名。我使用以下 sed 命令将结果存储在变量中:
ORIGINAL=./a/b/main1.c ./a/b/main2.c ./a/b/main3.c
sed 命令:
RESULT=$(shell echo $(ORIGINAL) | sed 's/\//\\/g')
结果输出是:
.\a\b\main1.c .abmain2.c .abmain3.c
如果我直接在 bash 上运行它,它工作正常。谁能告诉我怎么了?
谢谢!