Browse Source

Bulk change: move double quotes outside tokens (#4431)

Guido Lena Cota 4 years ago
parent
commit
354d4b8748
59 changed files with 118 additions and 118 deletions
  1. 1 1
      pages.de/common/tar.md
  2. 1 1
      pages.es/common/tar.md
  3. 1 1
      pages.fr/common/tar.md
  4. 2 2
      pages.it/common/banner.md
  5. 1 1
      pages.it/common/csvgrep.md
  6. 5 5
      pages.it/common/echo.md
  7. 2 2
      pages.ko/common/banner.md
  8. 1 1
      pages.ko/common/csvgrep.md
  9. 1 1
      pages.pt_BR/common/tar.md
  10. 2 2
      pages.pt_BR/linux/eyeD3.md
  11. 2 2
      pages.zh/common/banner.md
  12. 5 5
      pages.zh/common/echo.md
  13. 1 1
      pages.zh/osx/codesign.md
  14. 2 2
      pages.zh/osx/networksetup.md
  15. 3 3
      pages.zh/osx/say.md
  16. 4 4
      pages.zh/osx/units.md
  17. 1 1
      pages.zh/osx/yank.md
  18. 1 1
      pages.zh/windows/eventcreate.md
  19. 2 2
      pages.zh/windows/units.md
  20. 5 5
      pages.zh_TW/common/echo.md
  21. 2 2
      pages/common/banner.md
  22. 1 1
      pages/common/csvgrep.md
  23. 5 5
      pages/common/echo.md
  24. 1 1
      pages/common/gist.md
  25. 2 2
      pages/common/gitk.md
  26. 1 1
      pages/common/jrnl.md
  27. 3 3
      pages/common/mail.md
  28. 1 1
      pages/common/mitmdump.md
  29. 1 1
      pages/common/mkcert.md
  30. 3 3
      pages/common/mmv.md
  31. 2 2
      pages/common/mosquitto_pub.md
  32. 3 3
      pages/common/msmtp.md
  33. 1 1
      pages/common/numfmt.md
  34. 4 4
      pages/common/printf.md
  35. 1 1
      pages/common/read.md
  36. 1 1
      pages/common/scheme.md
  37. 1 1
      pages/common/shc.md
  38. 5 5
      pages/common/sqlmap.md
  39. 1 1
      pages/common/tar.md
  40. 2 2
      pages/common/transmission-remote.md
  41. 2 2
      pages/common/youtube-dl.md
  42. 1 1
      pages/linux/bitwise.md
  43. 3 3
      pages/linux/dunstify.md
  44. 1 1
      pages/linux/e2label.md
  45. 2 2
      pages/linux/eyeD3.md
  46. 1 1
      pages/linux/mkisofs.md
  47. 4 4
      pages/linux/notify-send.md
  48. 1 1
      pages/linux/snapper.md
  49. 1 1
      pages/linux/timedatectl.md
  50. 1 1
      pages/linux/ufw.md
  51. 2 2
      pages/linux/units.md
  52. 1 1
      pages/linux/yank.md
  53. 1 1
      pages/osx/codesign.md
  54. 2 2
      pages/osx/networksetup.md
  55. 3 3
      pages/osx/say.md
  56. 4 4
      pages/osx/units.md
  57. 1 1
      pages/osx/yank.md
  58. 1 1
      pages/windows/eventcreate.md
  59. 2 2
      pages/windows/units.md

+ 1 - 1
pages.de/common/tar.md

@@ -34,7 +34,7 @@
 
 - Extrahiere Dateien die mit einem Muster übereinstimmen:
 
-`tar xf {{quelle.tar}} --wildcards {{"*.html"}}`
+`tar xf {{quelle.tar}} --wildcards "{{*.html}}"`
 
 - Extrahiere eine bestimmte Datei ohne die Verzeichniss Struktur beizubehalten:
 

+ 1 - 1
pages.es/common/tar.md

@@ -30,4 +30,4 @@
 
 - Extraer archivos que coinciden con un patrón:
 
-`tar xf {{archivo.tar}} --wildcards {{"*.html"}}`
+`tar xf {{archivo.tar}} --wildcards "{{*.html}}"`

+ 1 - 1
pages.fr/common/tar.md

@@ -30,4 +30,4 @@
 
 - Extraire les fichiers correspondant au motif :
 
-`tar xf {{source.tar}} --wildcards {{"*.html"}}`
+`tar xf {{source.tar}} --wildcards "{{*.html}}"`

+ 2 - 2
pages.it/common/banner.md

@@ -4,11 +4,11 @@
 
 - Stampa il testo come un grande banner (le virgolette sono opzionali):
 
-`banner {{"Hello World"}}`
+`banner "{{Hello World}}"`
 
 - Stampa il testo come un banner con una larghezza di 50 caratteri:
 
-`banner -w {{50}} {{"Hello World"}}`
+`banner -w {{50}} "{{Hello World}}"`
 
 - Leggi testo da `stdin`:
 

+ 1 - 1
pages.it/common/csvgrep.md

@@ -14,4 +14,4 @@
 
 - Trova righe dove la colonna "nome" NON include la stringa "Mario Rossi":
 
-`csvgrep -i -c {{nome}} -m {{"Mario Rossi"}} {{data.csv}}`
+`csvgrep -i -c {{nome}} -m "{{Mario Rossi}}" {{data.csv}}`

+ 5 - 5
pages.it/common/echo.md

@@ -4,20 +4,20 @@
 
 - Stampa un messaggio di testo. Nota: le virgolette sono opzionali:
 
-`echo {{"Hello World"}}`
+`echo "{{Hello World}}"`
 
 - Stampa un messaggio con il contenuto di variabili di ambiente:
 
-`echo {{"La mia path è $PATH"}}`
+`echo "{{La mia path è $PATH}}"`
 
 - Stampa un messaggio senza il carattere di nuova linea finale:
 
-`echo -n {{"Hello World"}}`
+`echo -n "{{Hello World}}"`
 
 - Aggiungi un messaggio in coda ad un file:
 
-`echo {{"Hello World"}} >> {{file.txt}}`
+`echo "{{Hello World}}" >> {{file.txt}}`
 
 - Abilita l'interpretazione delle sequenze di escape con il backslash (caratteri speciali):
 
-`echo -e {{"Colonna 1\tColonna 2"}}`
+`echo -e "{{Colonna 1\tColonna 2}}"`

+ 2 - 2
pages.ko/common/banner.md

@@ -4,11 +4,11 @@
 
 - 텍스트 메시지를 큰 배너로 출력(따옴표는 선택 사항):
 
-`banner {{"Hello World"}}`
+`banner "{{Hello World}}"`
 
 - 텍스트 메시지를 너비가 50자인 배너로 출력:
 
-`banner -w {{50}} {{"Hello World"}}`
+`banner -w {{50}} "{{Hello World}}"`
 
 - `stdin`에서 텍스트 읽기:
 

+ 1 - 1
pages.ko/common/csvgrep.md

@@ -13,4 +13,4 @@
 
 - "이름" 열에서 "John Doe"가 포함되지 않는 행 찾기:
 
-`csvgrep -i -c {{이름}} -m {{"John Doe"}} {{데이터.csv}}`
+`csvgrep -i -c {{이름}} -m "{{John Doe}}" {{데이터.csv}}`

+ 1 - 1
pages.pt_BR/common/tar.md

@@ -30,7 +30,7 @@
 
 - Extrair arquivos seguindo um padrão:
 
-`tar -xvf {{input.tar}} --wildcards {{"*.html"}}`
+`tar -xvf {{input.tar}} --wildcards "{{*.html}}"`
 
 - Listando arquivos de um arquivo tar:
 

+ 2 - 2
pages.pt_BR/linux/eyeD3.md

@@ -9,11 +9,11 @@
 
 - Definir o título de um arquivo MP3:
 
-`eyeD3 --title {{"titulo"}} {{arquivo.mp3}}`
+`eyeD3 --title "{{titulo}}" {{arquivo.mp3}}`
 
 - Definir o álbum de todos os arquivos MP3 de um diretório:
 
-`eyeD3 --album {{"nome_do_album"}} {{*.mp3}}`
+`eyeD3 --album "{{nome_do_album}}" {{*.mp3}}`
 
 - Definir a capa do álbum para um arquivo MP3:
 

+ 2 - 2
pages.zh/common/banner.md

@@ -4,11 +4,11 @@
 
 - 将文字信息打印为大横幅(引号是可选的):
 
-`banner {{"Hello World"}}`
+`banner "{{Hello World}}"`
 
 - 将文字信息打印为横幅,宽度为 50 个字:
 
-`banner -w {{50}} {{"Hello World"}}`
+`banner -w {{50}} "{{Hello World}}"`
 
 - 从 `stdin` 中读取文本:
 

+ 5 - 5
pages.zh/common/echo.md

@@ -4,20 +4,20 @@
 
 - 输出文本信息. 注意: 引号是可选的:
 
-`echo {{"Hello World"}}`
+`echo "{{Hello World}}"`
 
 - 输出带有环境变量的信息:
 
-`echo {{"My path is $PATH"}}`
+`echo "{{My path is $PATH}}"`
 
 - 打印不带尾随换行符的信息:
 
-`echo -n {{"Hello World"}}`
+`echo -n "{{Hello World}}"`
 
 - 向文件添加信息:
 
-`echo {{"Hello World"}} >> {{file.txt}}`
+`echo "{{Hello World}}" >> {{file.txt}}`
 
 - 启用反斜杠转义的解释(特殊字符):
 
-`echo -e {{"Column 1\tColumn 2"}}`
+`echo -e "{{Column 1\tColumn 2}}"`

+ 1 - 1
pages.zh/osx/codesign.md

@@ -4,7 +4,7 @@
 
 - 用证书签名:
 
-`codesign -s {{"公司名称"}} {{路径 / 应用名.app}}`
+`codesign -s "{{公司名称}}" {{路径 / 应用名.app}}`
 
 - 验证应用程序的签名:
 

+ 2 - 2
pages.zh/osx/networksetup.md

@@ -8,7 +8,7 @@
 
 - 显示特定网络设备的配置信息:
 
-`networksetup -getinfo {{"Wi-Fi"}}`
+`networksetup -getinfo "{{Wi-Fi}}"`
 
 - 获取当前连接的 Wi-Fi 网络名称(Wi-Fi 设备通常为 en0 或 en1):
 
@@ -16,4 +16,4 @@
 
 - 连接到给定的 Wi-Fi 网络 Connect to a particular Wi-Fi network:
 
-`networksetup -setairportnetwork {{en0}} {{"无线网 SSID"}} {{密码}}`
+`networksetup -setairportnetwork {{en0}} "{{无线网 SSID}}" {{密码}}`

+ 3 - 3
pages.zh/osx/say.md

@@ -4,7 +4,7 @@
 
 - 大声说出一个句子:
 
-`say {{"你好,世界!"}}`
+`say "{{你好,世界!}}"`
 
 - 播放文本文件内容音频:
 
@@ -12,7 +12,7 @@
 
 - 用自定义的语音和语音速率说出一个句子:
 
-`say -v {{语音库名}} -r {{每分钟多少词}} {{"你好,我可以说中文."}}`
+`say -v {{语音库名}} -r {{每分钟多少词}} "{{你好,我可以说中文.}}"`
 
 - 列出可用的语音库:
 
@@ -20,4 +20,4 @@
 
 - 创建文本的音频文件:
 
-`say -o {{文件名.aiff}} {{"你好,请将录音内容输出到文件."}}`
+`say -o {{文件名.aiff}} "{{你好,请将录音内容输出到文件.}}"`

+ 4 - 4
pages.zh/osx/units.md

@@ -12,16 +12,16 @@
 
 - 单位与数量之间的转换:
 
-`units {{"15 pounds(磅)"}} {{kilograms(公斤)}}`
+`units "{{15 pounds(磅)}}" {{kilograms(公斤)}}`
 
 - 显示两个复合单位之间的转换:
 
-`units {{"meters(米) / second(秒)"}} {{"inches(英尺) / hour(小时)"}}`
+`units "{{meters(米) / second(秒)}}" "{{inches(英尺) / hour(小时)}}"`
 
 - 显示具有不同维度的单位之间的转换:
 
-`units {{"acres(英亩)"}} {{"ft(英尺)^2(平方)"}}`
+`units "{{acres(英亩)}}" "{{ft(英尺)^2(平方)}}"`
 
 - 显示字节乘数的转换:
 
-`units {{"15 megabytes(兆字节)"}} {{bytes(字节)}}`
+`units "{{15 megabytes(兆字节)}}" {{bytes(字节)}}`

+ 1 - 1
pages.zh/osx/yank.md

@@ -16,4 +16,4 @@
 
 - 只有与特定正则表达式匹配的内容才输入:
 
-`{{ps ux}} | yank -g {{"[0-9]+"}}`
+`{{ps ux}} | yank -g "{{[0-9]+}}"`

+ 1 - 1
pages.zh/windows/eventcreate.md

@@ -17,4 +17,4 @@
 
 - 在远程计算机的事件日志中创建事件:
 
-`eventcreate /s {{主机名}} /u {{用户名}} /p {{密码}} /t {{类型}} /id {{id}} /d "{{消息"}}`
+`eventcreate /s {{主机名}} /u {{用户名}} /p {{密码}} /t {{类型}} /id {{id}} /d "{{消息}}"`

+ 2 - 2
pages.zh/windows/units.md

@@ -16,8 +16,8 @@
 
 - 显示两个复合单位之间的转换:
 
-`units {{"meters / second"}} {{"inches / hour"}}`
+`units "{{meters / second}}" "{{inches / hour}}"`
 
 - 显示具有不同尺寸的单位之间的转换:
 
-`units {{"acres"}} {{"ft^2"}}`
+`units "{{acres}}" "{{ft^2}}"`

+ 5 - 5
pages.zh_TW/common/echo.md

@@ -4,20 +4,20 @@
 
 - 印出一行文字(如果文字中沒有連續的空格,可以不加引號):
 
-`echo {{"文字"}}`
+`echo "{{文字}}"`
 
 - 印出包含環境變數的文字:
 
-`echo {{"我的家目錄位於 $HOME"}}`
+`echo "{{我的家目錄位於 $HOME}}"`
 
 - 印出文字,但結尾不換行:
 
-`echo -n {{"文字"}}`
+`echo -n "{{文字}}"`
 
 - 將一段文字加到檔案的結尾:
 
-`echo {{"文字"}} >> {{檔案}}`
+`echo "{{文字}}" >> {{檔案}}`
 
 - 將以「\\」開頭的跳脫序列轉換為特殊字元(例如「\t」會被顯示為水平定位字元):
 
-`echo -e {{"第一欄\t第二欄"}}`
+`echo -e "{{第一欄\t第二欄}}"`

+ 2 - 2
pages/common/banner.md

@@ -4,11 +4,11 @@
 
 - Print the text message as a large banner (quotes are optional):
 
-`banner {{"Hello World"}}`
+`banner "{{Hello World}}"`
 
 - Print the text message as a banner with a width of 50 characters:
 
-`banner -w {{50}} {{"Hello World"}}`
+`banner -w {{50}} "{{Hello World}}"`
 
 - Read text from `stdin`:
 

+ 1 - 1
pages/common/csvgrep.md

@@ -14,4 +14,4 @@
 
 - Find rows in which the "name" column does NOT include the string "John Doe":
 
-`csvgrep -i -c {{name}} -m {{"John Doe"}} {{data.csv}}`
+`csvgrep -i -c {{name}} -m "{{John Doe}}" {{data.csv}}`

+ 5 - 5
pages/common/echo.md

@@ -4,20 +4,20 @@
 
 - Print a text message. Note: quotes are optional:
 
-`echo {{"Hello World"}}`
+`echo "{{Hello World}}"`
 
 - Print a message with environment variables:
 
-`echo {{"My path is $PATH"}}`
+`echo "{{My path is $PATH}}"`
 
 - Print a message without the trailing newline:
 
-`echo -n {{"Hello World"}}`
+`echo -n "{{Hello World}}"`
 
 - Append a message to the file:
 
-`echo {{"Hello World"}} >> {{file.txt}}`
+`echo "{{Hello World}}" >> {{file.txt}}`
 
 - Enable interpretation of backslash escapes (special characters):
 
-`echo -e {{"Column 1\tColumn 2"}}`
+`echo -e "{{Column 1\tColumn 2}}"`

+ 1 - 1
pages/common/gist.md

@@ -13,7 +13,7 @@
 
 - Create a private gist with a description:
 
-`gist -p -d {{"A meaningful description"}} {{file.txt}} `
+`gist -p -d "{{A meaningful description}}" {{file.txt}} `
 
 - Read contents from `stdin` and create a gist from it:
 

+ 2 - 2
pages/common/gitk.md

@@ -13,11 +13,11 @@
 
 - Show commits made since 1 week ago:
 
-`gitk --since={{"1 week ago"}}`
+`gitk --since="{{1 week ago}}"`
 
 - Show commits older than 1/1/2016:
 
-`gitk --until={{"1/1/2015"}}`
+`gitk --until="{{1/1/2015}}"`
 
 - Show at most 100 changes in all branches:
 

+ 1 - 1
pages/common/jrnl.md

@@ -17,7 +17,7 @@
 
 - View everything that happened from the start of last year to the start of last march:
 
-`jrnl -from {{"last year"}} -until {{march}}`
+`jrnl -from "{{last year}}" -until {{march}}`
 
 - Edit all entries tagged with "texas" and "history":
 

+ 3 - 3
pages/common/mail.md

@@ -5,12 +5,12 @@
 
 - Send a typed email message. The commandline below continues after pressing Enter key. Input CC email-id (optional) press Enter key. Input message text (can be multi-line). Press "Ctrl-D" key to complete the message text:
 
-`mail --subject={{"subject line"}} {{to_user@example.com}}`
+`mail --subject="{{subject line}}" {{to_user@example.com}}`
 
 - Send an email that contains file content:
 
-`mail --subject={{"$HOSTNAME filename.txt"}} {{to_user@example.com}} < {{path/to/filename.txt}}`
+`mail --subject="{{$HOSTNAME filename.txt}}" {{to_user@example.com}} < {{path/to/filename.txt}}`
 
 - Send a tar.gz file as an attachment:
 
-`tar cvzf - {{path/to/directory1 path/to/directory2}} | uuencode {{data.tar.gz}} | mail --subject={{"subject line"}} {{to_user@example.com}}`
+`tar cvzf - {{path/to/directory1 path/to/directory2}} | uuencode {{data.tar.gz}} | mail --subject="{{subject line}}" {{to_user@example.com}}`

+ 1 - 1
pages/common/mitmdump.md

@@ -10,7 +10,7 @@
 
 - Filter a saved traffic file to just POST requests:
 
-`mitmdump -nr {{input_filename}} -w {{output_filename}} {{"~m post"}}`
+`mitmdump -nr {{input_filename}} -w {{output_filename}} "{{~m post}}"`
 
 - Replay a saved traffic file:
 

+ 1 - 1
pages/common/mkcert.md

@@ -17,7 +17,7 @@
 
 - Generate wildcard certificate and private key for a given domain and its subdomains:
 
-`mkcert {{"*.example.it"}}`
+`mkcert "{{*.example.it}}"`
 
 - Uninstall the local CA:
 

+ 3 - 3
pages/common/mmv.md

@@ -8,12 +8,12 @@
 
 - Copy report6part4.txt to ./french/rapport6partie4.txt along with all similarly named files:
 
-`mmv -c {{"report*part*.txt"}} {{"./french/rapport#1partie#2.txt"}}`
+`mmv -c "{{report*part*.txt}}" "{{./french/rapport#1partie#2.txt}}"`
 
 - Append all .txt files into one file:
 
-`mmv -a {{"*.txt"}} {{"all.txt"}}`
+`mmv -a "{{*.txt}}" "{{all.txt}}"`
 
 - Convert dates in filenames from "M-D-Y" format to "D-M-Y" format:
 
-`mmv {{"[0-1][0-9]-[0-3][0-9]-[0-9][0-9][0-9][0-9].txt"}} {{"#3#4-#1#2-#5#6#7#8.txt"}}`
+`mmv "{{[0-1][0-9]-[0-3][0-9]-[0-9][0-9][0-9][0-9].txt}}" "{{#3#4-#1#2-#5#6#7#8.txt}}"`

+ 2 - 2
pages/common/mosquitto_pub.md

@@ -9,11 +9,11 @@
 
 - Publish timestamp and temperature data on the topic `sensors/temperature` to a remote host on a non-standard port:
 
-`mosquitto_pub -h {{192.168.1.1}} -p {{1885}} -t {{sensors/temperature}} -m {{"1266193804 32"}}`
+`mosquitto_pub -h {{192.168.1.1}} -p {{1885}} -t {{sensors/temperature}} -m "{{1266193804 32}}"`
 
 - Publish light switch status and retain the message on the topic `switches/kitchen_lights/status` to a remote host because there may be a long period of time between light switch events:
 
-`mosquitto_pub -r -h {{"iot.eclipse.org"}} -t {{switches/kitchen_lights/status}} -m {{"on"}}`
+`mosquitto_pub -r -h "{{iot.eclipse.org}}" -t {{switches/kitchen_lights/status}} -m "{{on}}"`
 
 - Send the contents of a file (`data.txt`) as a message and publish it to `sensors/temperature` topic:
 

+ 3 - 3
pages/common/msmtp.md

@@ -6,12 +6,12 @@
 
 - Send an email using the default account configured in `~/.msmtprc`:
 
-`echo {{"Hello world"}} | msmtp {{to@example.org}}`
+`echo "{{Hello world}}" | msmtp {{to@example.org}}`
 
 - Send an email using a specific account configured in `~/.msmtprc`:
 
-`echo {{"Hello world"}} | msmtp --account={{account_name}} {{to@example.org}}`
+`echo "{{Hello world}}" | msmtp --account={{account_name}} {{to@example.org}}`
 
 - Send an email without a configured account. The password should be specified in the `~/.msmtprc` file:
 
-`echo {{"Hello world"}} | msmtp --host={{localhost}} --port={{999}} --from={{from@example.org}} {{to@example.org}}`
+`echo "{{Hello world}}" | msmtp --host={{localhost}} --port={{999}} --from={{from@example.org}} {{to@example.org}}`

+ 1 - 1
pages/common/numfmt.md

@@ -13,4 +13,4 @@
 
 - Convert to IEC units, pad with 5 characters, left aligned:
 
-`du -s * | numfmt --to={{iec}} --format={{"%-5f"}}`
+`du -s * | numfmt --to={{iec}} --format="{{%-5f}}"`

+ 4 - 4
pages/common/printf.md

@@ -4,19 +4,19 @@
 
 - Print a text message:
 
-`printf {{"%s\n"}} {{"Hello world"}}`
+`printf "{{%s\n}}" "{{Hello world}}"`
 
 - Print an integer in bold blue:
 
-`printf {{"\e[1;34m%.3d\e[0m\n"}} {{42}}`
+`printf "{{\e[1;34m%.3d\e[0m\n}}" {{42}}`
 
 - Print a float number with the unicode Euro sign:
 
-`printf {{"\u20AC %.2f\n"}} {{123.4}}`
+`printf "{{\u20AC %.2f\n}}" {{123.4}}`
 
 - Print a text message composed with environment variables:
 
-`printf {{"var1: %s\tvar2: %s\n"}} {{"$VAR1"}} {{"$VAR2"}}`
+`printf "{{var1: %s\tvar2: %s\n}}" "{{$VAR1}}" "{{$VAR2}}"`
 
 - Store a formatted message in a variable (does not work on zsh):
 

+ 1 - 1
pages/common/read.md

@@ -28,7 +28,7 @@
 
 - Display a prompt before the input:
 
-`read -p {{"Enter your input here: "}} {{variable}}`
+`read -p "{{Enter your input here: }}" {{variable}}`
 
 - Do not echo typed characters (silent mode):
 

+ 1 - 1
pages/common/scheme.md

@@ -17,7 +17,7 @@
 
 - Load scheme expressions into the REPL:
 
-`scheme --eval {{"(define foo 'x)"}}`
+`scheme --eval "{{(define foo 'x)}}"`
 
 - Open the REPL in quiet mode:
 

+ 1 - 1
pages/common/shc.md

@@ -16,4 +16,4 @@
 
 - Compile a shell script and set a message to display upon expiration:
 
-`shc -f {{script}} -e {{dd/mm/yyyy}} -m {{"Please contact your provider"}}`
+`shc -f {{script}} -e {{dd/mm/yyyy}} -m "{{Please contact your provider}}"`

+ 5 - 5
pages/common/sqlmap.md

@@ -5,20 +5,20 @@
 
 - Run sqlmap against a single target URL:
 
-`python sqlmap.py -u {{"http://www.target.com/vuln.php?id=1"}}`
+`python sqlmap.py -u "{{http://www.target.com/vuln.php?id=1}}"`
 
 - Send data in a POST request (`--data` implies POST request):
 
-`python sqlmap.py -u {{"http://www.target.com/vuln.php"}} --data={{"id=1"}}`
+`python sqlmap.py -u "{{http://www.target.com/vuln.php}}" --data="{{id=1}}"`
 
 - Change the parameter delimiter (& is the default):
 
-`python sqlmap.py -u {{"http://www.target.com/vuln.php"}} --data={{"query=foobar;id=1"}} --param-del={{";"}}`
+`python sqlmap.py -u "{{http://www.target.com/vuln.php}}" --data="{{query=foobar;id=1}}" --param-del="{{;}}"`
 
 - Select a random `User-Agent` from `./txt/user-agents.txt` and use it:
 
-`python sqlmap.py -u {{"http://www.target.com/vuln.php"}} --random-agent`
+`python sqlmap.py -u "{{http://www.target.com/vuln.php}}" --random-agent`
 
 - Provide user credentials for HTTP protocol authentication:
 
-`python sqlmap.py -u {{"http://www.target.com/vuln.php"}} --auth-type {{Basic}} --auth-cred {{"testuser:testpass"}}`
+`python sqlmap.py -u "{{http://www.target.com/vuln.php}}" --auth-type {{Basic}} --auth-cred "{{testuser:testpass}}"`

+ 1 - 1
pages/common/tar.md

@@ -34,7 +34,7 @@
 
 - Extract files matching a pattern:
 
-`tar xf {{source.tar}} --wildcards {{"*.html"}}`
+`tar xf {{source.tar}} --wildcards "{{*.html}}"`
 
 - Extract a specific file without preserving the folder structure:
 

+ 2 - 2
pages/common/transmission-remote.md

@@ -17,7 +17,7 @@
 
 - Start torrent 1 and 2, stop torrent 3:
 
-`transmission-remote {{hostname}} -t {{"1,2"}} --start -t {{3}} --stop`
+`transmission-remote {{hostname}} -t "{{1,2}}" --start -t {{3}} --stop`
 
 - Remove torrent 1 and 2, and also delete local data for torrent 2:
 
@@ -29,4 +29,4 @@
 
 - Move torrents 1-10 and 15-20 to a new folder (folder will be created if it does not exist):
 
-`transmission-remote {{hostname}} -t {{"1-10,15-20"}} --move {{path/to/new_directory}}`
+`transmission-remote {{hostname}} -t "{{1-10,15-20}}" --move {{path/to/new_directory}}`

+ 2 - 2
pages/common/youtube-dl.md

@@ -13,7 +13,7 @@
 
 - Download a video or playlist at a specific quality:
 
-`youtube-dl --format {{"best[height<=480]"}} {{https://www.youtube.com/watch?v=oHg5SJYRHA0}}`
+`youtube-dl --format "{{best[height<=480]}}" {{https://www.youtube.com/watch?v=oHg5SJYRHA0}}`
 
 - Download the audio from a video and convert it to an MP3:
 
@@ -25,7 +25,7 @@
 
 - Download video(s) as MP4 files with custom filenames:
 
-`youtube-dl --format {{mp4}} -o {{"%(title)s by %(uploader)s on %(upload_date)s in %(playlist)s.%(ext)s"}} {{url}}`
+`youtube-dl --format {{mp4}} -o "{{%(title)s by %(uploader)s on %(upload_date)s in %(playlist)s.%(ext)s}}" {{url}}`
 
 - Download a particular language's subtitles along with the video:
 

+ 1 - 1
pages/linux/bitwise.md

@@ -17,4 +17,4 @@
 
 - Convert a C-style calculation:
 
-`bitwise  {{"0x123 + 0x20 - 30 / 50"}}`
+`bitwise  "{{0x123 + 0x20 - 30 / 50}}"`

+ 3 - 3
pages/linux/dunstify.md

@@ -5,15 +5,15 @@
 
 - Show a notification with a given title and message:
 
-`dunstify {{"Title"}} {{"Message"}}`
+`dunstify "{{Title}}" "{{Message}}"`
 
 - Show a notification with specified urgency:
 
-`dunstify {{"Title"}} {{"Message}}" -u {{low|normal|critical}}`
+`dunstify "{{Title}}" "{{Message}}" -u {{low|normal|critical}}`
 
 - Specify a message ID (overwrites any previous messages with the same ID):
 
-`dunstify {{"Title"}} {{"Message"}} -r {{123}}`
+`dunstify "{{Title}}" "{{Message}}" -r {{123}}`
 
 - To see other possible options:
 

+ 1 - 1
pages/linux/e2label.md

@@ -4,4 +4,4 @@
 
 - Change the volume label on a specific ext partition:
 
-`e2label {{/dev/sda1}} {{"label_name"}}`
+`e2label {{/dev/sda1}} "{{label_name}}"`

+ 2 - 2
pages/linux/eyeD3.md

@@ -9,11 +9,11 @@
 
 - Set the title of an MP3 file:
 
-`eyeD3 --title {{"A Title"}} {{filename.mp3}}`
+`eyeD3 --title "{{A Title}}" {{filename.mp3}}`
 
 - Set the album of all the MP3 files in a directory:
 
-`eyeD3 --album {{"Album Name"}} {{*.mp3}}`
+`eyeD3 --album "{{Album Name}}" {{*.mp3}}`
 
 - Set the front cover art for an MP3 file:
 

+ 1 - 1
pages/linux/mkisofs.md

@@ -9,4 +9,4 @@
 
 - Set the disc label when creating an ISO:
 
-`mkisofs -o {{filename.iso}} -V {{"label_name"}} {{path/to/source_directory}}`
+`mkisofs -o {{filename.iso}} -V "{{label_name}}" {{path/to/source_directory}}`

+ 4 - 4
pages/linux/notify-send.md

@@ -4,16 +4,16 @@
 
 - Show a notification with the title "Test" and the content "This is a test":
 
-`notify-send {{"Test"}} {{"This is a test"}}`
+`notify-send "{{Test}}" "{{This is a test}}"`
 
 - Show a notification with a custom icon:
 
-`notify-send -i {{icon.png}} {{"Test"}} {{"This is a test"}}`
+`notify-send -i {{icon.png}} "{{Test}}" "{{This is a test}}"`
 
 - Show a notification for 5 seconds:
 
-`notify-send -t 5000 {{"Test"}} {{"This is a test"}}`
+`notify-send -t 5000 "{{Test}}" "{{This is a test}}"`
 
 - Show a notification with an app's icon:
 
-`notify-send {{"Test"}} --icon={{google-chrome}}`
+`notify-send "{{Test}}" --icon={{google-chrome}}`

+ 1 - 1
pages/linux/snapper.md

@@ -13,7 +13,7 @@
 
 - Create a snapshot with a description:
 
-`snapper -c {{config}} create -d {{"snapshot_description"}}`
+`snapper -c {{config}} create -d "{{snapshot_description}}"`
 
 - List snapshots for a config:
 

+ 1 - 1
pages/linux/timedatectl.md

@@ -8,7 +8,7 @@
 
 - Set the local time of the system clock directly:
 
-`timedatectl set-time {{"yyyy-MM-dd hh:mm:ss"}}`
+`timedatectl set-time "{{yyyy-MM-dd hh:mm:ss}}"`
 
 - List available timezones:
 

+ 1 - 1
pages/linux/ufw.md

@@ -17,7 +17,7 @@
 
 - Allow incoming traffic on port 5432 on this host with a comment identifying the service:
 
-`ufw allow {{5432}} comment {{"Service"}}`
+`ufw allow {{5432}} comment "{{Service}}"`
 
 - Allow only TCP traffic from 192.168.0.4 to any address on this host, on port 22:
 

+ 2 - 2
pages/linux/units.md

@@ -17,8 +17,8 @@
 
 - Show the conversion between two compound units:
 
-`units {{"meters / second"}} {{"inches / hour"}}`
+`units "{{meters / second}}" "{{inches / hour}}"`
 
 - Show the conversion between units with different dimensions:
 
-`units {{"acres"}} {{"ft^2"}}`
+`units "{{acres}}" "{{ft^2}}"`

+ 1 - 1
pages/linux/yank.md

@@ -16,4 +16,4 @@
 
 - Only yank fields matching a specific pattern:
 
-`{{ps ux}} | yank -g {{"[0-9]+"}}`
+`{{ps ux}} | yank -g "{{[0-9]+}}"`

+ 1 - 1
pages/osx/codesign.md

@@ -4,7 +4,7 @@
 
 - Sign an application with a certificate:
 
-`codesign -s {{"My Company Name"}} {{/path/to/App.app}}`
+`codesign -s "{{My Company Name}}" {{/path/to/App.app}}`
 
 - Verify the certificate of an application:
 

+ 2 - 2
pages/osx/networksetup.md

@@ -8,7 +8,7 @@
 
 - Show network settings for a particular networking device:
 
-`networksetup -getinfo {{"Wi-Fi"}}`
+`networksetup -getinfo "{{Wi-Fi}}"`
 
 - Get currently connected Wi-Fi network name (Wi-Fi device usually en0 or en1):
 
@@ -16,4 +16,4 @@
 
 - Connect to a particular Wi-Fi network:
 
-`networksetup -setairportnetwork {{en0}} {{"Airport Network SSID"}} {{password}}`
+`networksetup -setairportnetwork {{en0}} "{{Airport Network SSID}}" {{password}}`

+ 3 - 3
pages/osx/say.md

@@ -4,7 +4,7 @@
 
 - Say a phrase aloud:
 
-`say {{"I like to ride my bike."}}`
+`say "{{I like to ride my bike.}}"`
 
 - Read a file aloud:
 
@@ -12,7 +12,7 @@
 
 - Say a phrase with a custom voice and speech rate:
 
-`say -v {{voice}} -r {{words_per_minute}} {{"I'm sorry Dave, I can't let you do that."}}`
+`say -v {{voice}} -r {{words_per_minute}} "{{I'm sorry Dave, I can't let you do that.}}"`
 
 - List the available voices:
 
@@ -20,4 +20,4 @@
 
 - Create an audio file of the spoken text:
 
-`say -o {{filename.aiff}} {{"Here's to the Crazy Ones."}}`
+`say -o {{filename.aiff}} "{{Here's to the Crazy Ones.}}"`

+ 4 - 4
pages/osx/units.md

@@ -12,16 +12,16 @@
 
 - Convert between units with quantities:
 
-`units {{"15 pounds"}} {{kilograms}}`
+`units "{{15 pounds}}" {{kilograms}}`
 
 - Show the conversion between two compound units:
 
-`units {{"meters / second"}} {{"inches / hour"}}`
+`units "{{meters / second}}" "{{inches / hour}}"`
 
 - Show the conversion between units with different dimensions:
 
-`units {{"acres"}} {{"ft^2"}}`
+`units "{{acres}}" "{{ft^2}}"`
 
 - Show the conversion of byte multipliers:
 
-`units {{"15 megabytes"}} {{bytes}}`
+`units "{{15 megabytes}}" {{bytes}}`

+ 1 - 1
pages/osx/yank.md

@@ -16,4 +16,4 @@
 
 - Only yank fields matching a specific pattern:
 
-`{{ps ux}} | yank -g {{"[0-9]+"}}`
+`{{ps ux}} | yank -g "{{[0-9]+}}"`

+ 1 - 1
pages/windows/eventcreate.md

@@ -18,4 +18,4 @@
 
 - Create an event in a remote machine's event log:
 
-`eventcreate /s {{hostname}} /u {{username}} /p {{password}} /t {{type}} /id {{id}} /d "{{message"}}`
+`eventcreate /s {{hostname}} /u {{username}} /p {{password}} /t {{type}} /id {{id}} /d "{{message}}"`

+ 2 - 2
pages/windows/units.md

@@ -16,8 +16,8 @@
 
 - Show the conversion between two compound units:
 
-`units {{"meters / second"}} {{"inches / hour"}}`
+`units "{{meters / second}}" "{{inches / hour}}"`
 
 - Show the conversion between units with different dimensions:
 
-`units {{"acres"}} {{"ft^2"}}`
+`units "{{acres}}" "{{ft^2}}"`