multiple pages: change Unicode characters to ASCII (#2802)

Change Unicode characters to ASCII:

- non-breaking spaces (\xc2\xa0) to normal spaces (\x20)
- apostrophes (there are only 2 Unicode apostrophes, all others are already ASCII)
- hyphen (−) to minus (-)
- fix wording (STD‐OUT to "standard output")
This commit is contained in:
Balázs Úr
2019-02-25 00:56:24 +01:00
committed by Waldir Pimenta
parent ad3772d8cb
commit 6956cd5348
9 changed files with 10 additions and 10 deletions

View File

@@ -23,10 +23,10 @@
`launchctl unload ~/Library/LaunchAgents/{{my_script}}.plist`
- Manually run a known (loaded) agent/daemon, even if it isnt the right time (note: this command uses the agent's label, rather than the filename):
- Manually run a known (loaded) agent/daemon, even if it is not the right time (note: this command uses the agent's label, rather than the filename):
`launchctl start {{my_script}}`
- Manually kill the process associated with a known agent/daemon, if it's running:
- Manually kill the process associated with a known agent/daemon, if it is running:
`launchctl stop {{my_script}}`