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

This commit is contained in:
Guido Lena Cota
2020-10-04 19:33:38 +02:00
committed by GitHub
parent cfe462c57f
commit 354d4b8748
59 changed files with 118 additions and 118 deletions

View File

@@ -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:

View File

@@ -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}}`

View File

@@ -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.}}"`

View File

@@ -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}}`

View File

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