Switch backticks to double backticks for rst compatibility

This commit is contained in:
ridiculousfish
2018-12-19 12:02:45 -08:00
parent 2a002a4ba1
commit 0e936198db
84 changed files with 825 additions and 825 deletions

View File

@@ -10,12 +10,12 @@ wait [-n | --any] [PID | PROCESS_NAME] ...
Description
------------
`wait` waits for child jobs to complete.
``wait`` waits for child jobs to complete.
- If a pid is specified, the command waits for the job that the process with the pid belongs to.
- If a process name is specified, the command waits for the jobs that the matched processes belong to.
- If neither a pid nor a process name is specified, the command waits for all background jobs.
- If the `-n` / `--any` flag is provided, the command returns as soon as the first job completes. If it is not provided, it returns after all jobs complete.
- If the ``-n`` / ``--any`` flag is provided, the command returns as soon as the first job completes. If it is not provided, it returns after all jobs complete.
Example
------------
@@ -27,7 +27,7 @@ Example
sleep 10 &
wait $last_pid
spawns `sleep` in the background, and then waits until it finishes.
spawns ``sleep`` in the background, and then waits until it finishes.
::
@@ -44,4 +44,4 @@ spawns five jobs in the background, and then waits until all of them finishes.
hoge &
wait sleep
spawns five jobs and `hoge` in the background, and then waits until all `sleep`s finishes, and doesn't wait for `hoge` finishing.
spawns five jobs and ``hoge`` in the background, and then waits until all ``sleep``s finishes, and doesn't wait for ``hoge`` finishing.