diff --git a/pages/linux/a2disconf.md b/pages/linux/a2disconf.md index fd6d96e43d..9770e13498 100644 --- a/pages/linux/a2disconf.md +++ b/pages/linux/a2disconf.md @@ -9,4 +9,4 @@ - Don't show informative messages: -`sudo a2disconf --quiet {{configuration_file}}` +`sudo a2disconf {{[-q|--quiet]}} {{configuration_file}}` diff --git a/pages/linux/a2dismod.md b/pages/linux/a2dismod.md index cd548ced7b..b106c463e2 100644 --- a/pages/linux/a2dismod.md +++ b/pages/linux/a2dismod.md @@ -9,4 +9,4 @@ - Don't show informative messages: -`sudo a2dismod --quiet {{module}}` +`sudo a2dismod {{[-q|--quiet]}} {{module}}` diff --git a/pages/linux/a2dissite.md b/pages/linux/a2dissite.md index 23a8d0d430..cd3b7243b4 100644 --- a/pages/linux/a2dissite.md +++ b/pages/linux/a2dissite.md @@ -9,4 +9,4 @@ - Don't show informative messages: -`sudo a2dissite --quiet {{virtual_host}}` +`sudo a2dissite {{[-q|--quiet]}} {{virtual_host}}` diff --git a/pages/linux/a2enconf.md b/pages/linux/a2enconf.md index 6906bc96ef..c8b4ece3b8 100644 --- a/pages/linux/a2enconf.md +++ b/pages/linux/a2enconf.md @@ -9,4 +9,4 @@ - Don't show informative messages: -`sudo a2enconf --quiet {{configuration_file}}` +`sudo a2enconf {{[-q|--quiet]}} {{configuration_file}}` diff --git a/pages/linux/a2enmod.md b/pages/linux/a2enmod.md index 199c30c731..d59dea2b99 100644 --- a/pages/linux/a2enmod.md +++ b/pages/linux/a2enmod.md @@ -9,4 +9,4 @@ - Don't show informative messages: -`sudo a2enmod --quiet {{module}}` +`sudo a2enmod {{[-q|--quiet]}} {{module}}` diff --git a/pages/linux/a2ensite.md b/pages/linux/a2ensite.md index f55893c999..8554a13676 100644 --- a/pages/linux/a2ensite.md +++ b/pages/linux/a2ensite.md @@ -9,4 +9,4 @@ - Don't show informative messages: -`sudo a2ensite --quiet {{virtual_host}}` +`sudo a2ensite {{[-q|--quiet]}} {{virtual_host}}` diff --git a/pages/linux/aa-complain.md b/pages/linux/aa-complain.md index cc0e0ed5e1..21f734f551 100644 --- a/pages/linux/aa-complain.md +++ b/pages/linux/aa-complain.md @@ -10,4 +10,4 @@ - Set policies to complain mode: -`sudo aa-complain --dir {{path/to/profiles}}` +`sudo aa-complain {{[-d|--dir]}} {{path/to/profiles}}` diff --git a/pages/linux/aa-enforce.md b/pages/linux/aa-enforce.md index 314aeb1a7f..0aec96a8e5 100644 --- a/pages/linux/aa-enforce.md +++ b/pages/linux/aa-enforce.md @@ -6,7 +6,7 @@ - Enable profile: -`sudo aa-enforce --dir {{path/to/profile}}` +`sudo aa-enforce {{[-d|--dir]}} {{path/to/profile}}` - Enable profiles: diff --git a/pages/linux/abroot.md b/pages/linux/abroot.md index 724b27630f..ba4542017a 100644 --- a/pages/linux/abroot.md +++ b/pages/linux/abroot.md @@ -34,4 +34,4 @@ - Display help: -`abroot --help` +`abroot {{[-h|--help]}}` diff --git a/pages/linux/add-apt-repository.md b/pages/linux/add-apt-repository.md index f791ffee0c..151b6c6615 100644 --- a/pages/linux/add-apt-repository.md +++ b/pages/linux/add-apt-repository.md @@ -1,7 +1,7 @@ # add-apt-repository > Manage `apt` repository definitions. -> More information: . +> More information: . - Add a new `apt` repository: @@ -9,7 +9,7 @@ - Remove an `apt` repository: -`add-apt-repository --remove {{repository_spec}}` +`add-apt-repository {{[-r|--remove]}} {{repository_spec}}` - Update the package cache after adding a repository: @@ -17,4 +17,4 @@ - Allow source packages to be downloaded from the repository: -`add-apt-repository --enable-source {{repository_spec}}` +`add-apt-repository {{[-s|--enable-source]}} {{repository_spec}}` diff --git a/pages/linux/alien.md b/pages/linux/alien.md index 17eba0e2a9..a895b4bb0b 100644 --- a/pages/linux/alien.md +++ b/pages/linux/alien.md @@ -6,16 +6,16 @@ - Convert a specific installation file to Debian format (`.deb` extension): -`sudo alien --to-deb {{path/to/file}}` +`sudo alien {{[-d|--to-deb]}} {{path/to/file}}` - Convert a specific installation file to Red Hat format (`.rpm` extension): -`sudo alien --to-rpm {{path/to/file}}` +`sudo alien {{[-r|--to-rpm]}} {{path/to/file}}` - Convert a specific installation file to a Slackware installation file (`.tgz` extension): -`sudo alien --to-tgz {{path/to/file}}` +`sudo alien {{[-t|--to-tgz]}} {{path/to/file}}` - Convert a specific installation file to Debian format and install on the system: -`sudo alien --to-deb --install {{path/to/file}}` +`sudo alien {{[-d|--to-deb]}} {{[-i|--install]}} {{path/to/file}}` diff --git a/pages/linux/alpine.md b/pages/linux/alpine.md index ddd527b047..ef770ed2e5 100644 --- a/pages/linux/alpine.md +++ b/pages/linux/alpine.md @@ -14,4 +14,4 @@ - Quit alpine: -`q + y` +`` diff --git a/pages/linux/apt-add-repository.md b/pages/linux/apt-add-repository.md index 4f2b684c81..e399cf881f 100644 --- a/pages/linux/apt-add-repository.md +++ b/pages/linux/apt-add-repository.md @@ -1,20 +1,7 @@ # apt-add-repository -> Manage `apt` repository definitions. -> More information: . +> This command is an alias of `add-apt-repository`. -- Add a new `apt` repository: +- View documentation for the original command: -`apt-add-repository {{repository_spec}}` - -- Remove an `apt` repository: - -`apt-add-repository {{[-r|--remove]}} {{repository_spec}}` - -- Update the package cache after adding a repository: - -`apt-add-repository --update {{repository_spec}}` - -- Enable source packages: - -`apt-add-repository {{[-s|--enable-source]}} {{repository_spec}}` +`tldr add-apt-repository` diff --git a/pages/linux/ark.md b/pages/linux/ark.md index 5d582e4c1c..2787f8c16d 100644 --- a/pages/linux/ark.md +++ b/pages/linux/ark.md @@ -5,12 +5,12 @@ - Extract a specific archive into the current directory: -`ark --batch {{path/to/archive}}` +`ark {{[-b|--batch]}} {{path/to/archive}}` - Extract an archive into a specific directory: -`ark --batch --destination {{path/to/directory}} {{path/to/archive}}` +`ark {{[-b|--batch]}} {{[-o|--destination]}} {{path/to/directory}} {{path/to/archive}}` - Create an archive if it does not exist and add specific files to it: -`ark --add-to {{path/to/archive}} {{path/to/file1 path/to/file2 ...}}` +`ark {{[-t|--add-to]}} {{path/to/archive}} {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/linux/auracle.md b/pages/linux/auracle.md index 96bc8cdd7c..0850134ec7 100644 --- a/pages/linux/auracle.md +++ b/pages/linux/auracle.md @@ -1,6 +1,6 @@ # auracle -> Command-line tool used to interact with Arch Linux's User Repository, commonly referred to as the AUR. +> Interact with Arch Linux's User Repository, commonly referred to as the AUR. > More information: . - Display AUR packages that match a regular expression: