shell 中长命令的换行处理
考察下面的脚本: emcc -o ./dist/test.html --shell-file ./tmp.html --source-map-base dist -O3 -g4 --source-map-base dist -s MODULARIZE=1 -s "EXPORT_NAME=\"Test\"" -s USE_SDL=2 -s LEGACY_GL_EMULATION=1 --pre-js ./pre.js --post-js ./post.js --cpuprofiler --memoryprofiler --threadprofilermain.cpp 这里在调用 换行可通过加 改造后看起来像这样,一个参数占一行: emcc -o ./dist/test.html\
--shell-file ./tmp.html\
--source-map-base dist\
-O3\
-g4\
--source-map-base dist\
-s MODULARIZE=1\
-s "EXPORT_NAME=\"Test\""\
-s USE_SDL=2\
-s LEGACY_GL_EMULATION=1\
--pre-js ./pre.js\
--post-js ./post.js\
--cpuprofiler\
--memoryprofiler\
--threadprofiler\
main.cpp 注释通过 emcc -o ./dist/test.html\ # 目标文件
--shell-file ./tmp.html\ # 模板文件
--source-map-base dist\
-O3\
-g4\
--source-map-base dist\
-s MODULARIZE=1\
-s "EXPORT_NAME=\"Test\""\
-s USE_SDL=2\
-s LEGACY_GL_EMULATION=1\
--pre-js ./pre.js\
--post-js ./post.js\
--cpuprofiler\
--memoryprofiler\
--threadprofiler\
main.cpp 这样会导致整个 shell 脚本解析失败。 实测发现,也不能这样: emcc -o\
# 目标文件
./dist/test.html\
# 模板文件
--shell-file ./tmp.html\
--source-map-base dist\
-O3\
-g4\
--source-map-base dist\
-s MODULARIZE=1\
-s "EXPORT_NAME=\"Test\""\
-s USE_SDL=2\
-s LEGACY_GL_EMULATION=1\
--pre-js ./pre.js\
--post-js ./post.js\
--cpuprofiler\
--memoryprofiler\
--threadprofiler\
main.cpp 同样会导致解析失败。 说到底,通过 但也不是没办法添加注释了,几经周转发现如下写法是可行的: emcc -o ./dist/test.html `# 目标文件` \
--shell-file ./tmp.html `# 模板文件` \
--source-map-base dist `# source map 根路径` \
-O3 `# 优化级别` \
-g4 `# 生成 debug 信息` \
--source-map-base dist\
`# -s MODULARIZE=1\`
-s "EXPORT_NAME=\"Test\""\
-s USE_SDL=2\
-s LEGACY_GL_EMULATION=1\
--pre-js ./pre.js\
--post-js ./post.js\
--cpuprofiler\
--memoryprofiler\
--threadprofiler\
main.cpp 即通过 进一步,解决了注释的问题,如果我们不想要某一行,同时又不想删除,可以像下面这样来注释: emcc -o ./dist/test.html `# 目标文件` \
--shell-file ./tmp.html `# 模板文件` \
--source-map-base dist `# source map 根路径` \
-O3 `# 优化级别` \
-g4 `# 生成 debug 信息` \
--source-map-base dist\
-s MODULARIZE=1\
-s "EXPORT_NAME=\"Test\""\
-s USE_SDL=2\
-s LEGACY_GL_EMULATION=1\
`# --pre-js ./pre.js`\
--post-js ./post.js\
--cpuprofiler\
`# --threadprofiler`\
--memoryprofiler\
main.cpp |
CC BY-NC-SA 署名-非商业性使用-相同方式共享