diff --git a/pages/common/alias.md b/pages/common/alias.md index b47865f171..de95d75844 100644 --- a/pages/common/alias.md +++ b/pages/common/alias.md @@ -3,7 +3,7 @@ > Create aliases - words that are replaced by a command string. > Aliases expire with the current shell session unless defined in the shell's configuration file, e.g. `~/.bashrc` for Bash or `~/.zshrc` for Zsh. > See also: `unalias`. -> More information: . +> More information: . - List all aliases: diff --git a/pages/common/bg.md b/pages/common/bg.md index 4c7fc233ed..dc6c2ea65c 100644 --- a/pages/common/bg.md +++ b/pages/common/bg.md @@ -2,7 +2,7 @@ > Resume suspended jobs (e.g. using ``), and keeps them running in the background. > See also: `jobs`, `fg`, `disown`. -> More information: . +> More information: . - Resume the most recently suspended job and run it in the background: diff --git a/pages/common/builtin.md b/pages/common/builtin.md index cf25f72c5c..b16e40eda4 100644 --- a/pages/common/builtin.md +++ b/pages/common/builtin.md @@ -1,7 +1,7 @@ # builtin > Execute shell builtins. -> More information: . +> More information: . - Run a shell builtin: diff --git a/pages/common/cd.md b/pages/common/cd.md index 16a0894e48..178cdca527 100644 --- a/pages/common/cd.md +++ b/pages/common/cd.md @@ -1,7 +1,7 @@ # cd > Change the current working directory. -> More information: . +> More information: . - Go to the specified directory: diff --git a/pages/common/colon.md b/pages/common/colon.md index df7f27b855..b260cca6ee 100644 --- a/pages/common/colon.md +++ b/pages/common/colon.md @@ -1,7 +1,7 @@ # Colon > Returns a successful exit status code of 0. -> More information: . +> More information: . - Return a successful exit code: diff --git a/pages/common/command.md b/pages/common/command.md index 2a20771656..c89a202e72 100644 --- a/pages/common/command.md +++ b/pages/common/command.md @@ -1,7 +1,7 @@ # command > Command forces the shell to execute the program and ignore any functions, builtins and aliases with the same name. -> More information: . +> More information: . - Execute the `ls` program literally, even if an `ls` alias exists: diff --git a/pages/common/eval.md b/pages/common/eval.md index cf7f60502c..69731011ce 100644 --- a/pages/common/eval.md +++ b/pages/common/eval.md @@ -1,7 +1,7 @@ # eval > Execute arguments as a single command in the current shell and return its result. -> More information: . +> More information: . - Call `echo` with the "foo" argument: diff --git a/pages/common/fc.md b/pages/common/fc.md index 836d2814d2..de5cf5c80c 100644 --- a/pages/common/fc.md +++ b/pages/common/fc.md @@ -1,7 +1,7 @@ # fc > Open the most recent command for editing and then run it. -> More information: . +> More information: . - Open the last command in the default system editor and run it after editing: diff --git a/pages/common/fg.md b/pages/common/fg.md index 233955cecd..ab586c7589 100644 --- a/pages/common/fg.md +++ b/pages/common/fg.md @@ -2,7 +2,7 @@ > Run jobs in foreground. > See also: `jobs`, `bg`, `disown`. -> More information: . +> More information: . - Bring most recently suspended or running background job to foreground: diff --git a/pages/common/let.md b/pages/common/let.md index 8754e44ee4..7a64ca98fd 100644 --- a/pages/common/let.md +++ b/pages/common/let.md @@ -2,7 +2,7 @@ > Evaluate arithmetic expressions in shell. > Supports variables, operators, and conditional expressions. -> More information: . +> More information: . - Evaluate a simple arithmetic expression: diff --git a/pages/common/readonly.md b/pages/common/readonly.md index d396ce1413..7190b57aee 100644 --- a/pages/common/readonly.md +++ b/pages/common/readonly.md @@ -1,7 +1,7 @@ # readonly > Set read-only shell variables. -> More information: . +> More information: . - Set a read-only variable: diff --git a/pages/common/set.md b/pages/common/set.md index 64fef70ef1..e929134bc2 100644 --- a/pages/common/set.md +++ b/pages/common/set.md @@ -1,7 +1,7 @@ # set > Toggle shell options or set the values of positional parameters. -> More information: . +> More information: . - Display the names and values of shell variables: diff --git a/pages/common/shift.md b/pages/common/shift.md index f74e40430d..c20a18dbbe 100644 --- a/pages/common/shift.md +++ b/pages/common/shift.md @@ -1,7 +1,7 @@ # shift > Move positional parameters. -> More information: . +> More information: . - Remove the first positional parameter: diff --git a/pages/common/source.md b/pages/common/source.md index 4437eea4f8..e0d4521ad7 100644 --- a/pages/common/source.md +++ b/pages/common/source.md @@ -1,7 +1,7 @@ # source > Execute commands from a file in the current shell. -> More information: . +> More information: . - Evaluate contents of a given file: diff --git a/pages/common/umask.md b/pages/common/umask.md index 3ea5763e08..423a0d41e1 100644 --- a/pages/common/umask.md +++ b/pages/common/umask.md @@ -1,7 +1,7 @@ # umask > Manage the read/write/execute permissions that are masked out (i.e. restricted) for newly created files by the user. -> More information: . +> More information: . - Display the current mask in octal notation: diff --git a/pages/common/unalias.md b/pages/common/unalias.md index 28f988d77f..a8677cb2d3 100644 --- a/pages/common/unalias.md +++ b/pages/common/unalias.md @@ -2,7 +2,7 @@ > Remove aliases. > See also: `alias`. -> More information: . +> More information: . - Remove an alias: diff --git a/pages/common/unset.md b/pages/common/unset.md index 7976b463b0..6db05bc8a7 100644 --- a/pages/common/unset.md +++ b/pages/common/unset.md @@ -1,7 +1,7 @@ # unset > Remove shell variables or functions. -> More information: . +> More information: . - Remove the variable `foo`, or if the variable doesn't exist, remove the function `foo`: diff --git a/pages/common/wait.md b/pages/common/wait.md index c21519de26..c302fc34b3 100644 --- a/pages/common/wait.md +++ b/pages/common/wait.md @@ -2,7 +2,7 @@ > Wait for a process to complete before proceeding. > See also: `ps` to view information about running processes. -> More information: . +> More information: . - Wait for a process to finish given its process ID (PID) and return its exit status: