前言
考察下面的指令碼:
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 進行 webassembly 編譯時,組織了很多引數。整個命令都在一行之中,不是很好閱讀和維護。
換行可通過加 \ 的方式來進行換行www.cppcns.com拆分。
改造後看起來像這樣,乙個引數佔一行:
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\
--cpuprofilerwww.cppcns.com\
--memoryprofiler\
--threadprofiler\
main.cpp
注釋通過 \(backslash) 換行後,整體閱讀體驗好了很多。進一步,我們想要為每個引數新增注釋,發現不能簡單地這樣來:
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 yzayotmq`# 模板檔案` \
--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
即通過 `(backtick) 來包裹我們的注釋,就不會破壞掉指令碼的語義了,能夠正確解析執行。
進一步,解決了注釋的問題,如果我們不想要某一行,同時又不想刪除,可以像下面這樣來注程式設計客棧釋:
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
總結本文標題: shell中長命令的換行處理方法示例
本文位址:
常見處理文字的SHELL命令
1 迴圈讀取 for ip in seq 1 4 dodone 逐行讀取 一 for line in cat a.txt doecho line done 二 cat a.txt while read line doecho line done 三 while read line doecho li...
python中執行shell命令的幾個方法
這篇文章主要介紹了python中執行shell命令的幾個方法,本文一共給出3種方法實現執行shell命令,需要的朋友可以參考下 最近有個需求就是頁面上執行shell命令,第一想到的就是os.system,如下 os.system cat proc cpuinfo 但是發現頁面上列印的命令執行結果 0...
python中執行shell命令的幾種方式
最近有個需求就是頁面上執行shell命令,第一想到的就是os.system,os.system cat proc cpuinfo 但是發現頁面上列印的命令執行結果 0或者1,當然不滿足需求了。嘗試第二種方案 os.popen output os.popen cat proc cpuinfo prin...