diff --git a/pages/linux/toolbox-create.md b/pages/linux/toolbox-create.md index 54caa994aa..4c869b15e5 100644 --- a/pages/linux/toolbox-create.md +++ b/pages/linux/toolbox-create.md @@ -5,20 +5,20 @@ - Create a `toolbox` container for a specific distribution: -`toolbox create --distro {{distribution}}` +`toolbox create {{[-d|--distro]}} {{distribution}}` - Create a `toolbox` container for a specific release of the current distribution: -`toolbox create --release {{release}}` +`toolbox create {{[-r|--release]}} {{release}}` - Create a `toolbox` container with a custom image: -`toolbox create --image {{name}}` +`toolbox create {{[-i|--image]}} {{name}}` - Create a `toolbox` container from a custom Fedora image: -`toolbox create --image {{registry.fedoraproject.org/fedora-toolbox:39}}` +`toolbox create {{[-i|--image]}} {{registry.fedoraproject.org/fedora-toolbox:39}}` - Create a `toolbox` container using the default image for Fedora 39: -`toolbox create --distro {{fedora}} --release {{f39}}` +`toolbox create {{[-d|--distro]}} {{fedora}} {{[-r|--release]}} {{f39}}` diff --git a/pages/linux/toolbox-enter.md b/pages/linux/toolbox-enter.md index 5e4680867b..1cac31d9ce 100644 --- a/pages/linux/toolbox-enter.md +++ b/pages/linux/toolbox-enter.md @@ -6,12 +6,12 @@ - Enter a `toolbox` container using the default image of a specific distribution: -`toolbox enter --distro {{distribution}}` +`toolbox enter {{[-d|--distro]}} {{distribution}}` - Enter a `toolbox` container using the default image of a specific release of the current distribution: -`toolbox enter --release {{release}}` +`toolbox enter {{[-r|--release]}} {{release}}` - Enter a toolbox container using the default image for Fedora 39: -`toolbox enter --distro {{fedora}} --release {{f39}}` +`toolbox enter {{[-d|--distro]}} {{fedora}} {{[-r|--release]}} {{f39}}` diff --git a/pages/linux/toolbox-list.md b/pages/linux/toolbox-list.md index d166c7572f..d620046528 100644 --- a/pages/linux/toolbox-list.md +++ b/pages/linux/toolbox-list.md @@ -9,8 +9,8 @@ - List only `toolbox` containers: -`toolbox list --containers` +`toolbox list {{[-c|--containers]}}` - List only `toolbox` images: -`toolbox list --images` +`toolbox list {{[-i|--images]}}` diff --git a/pages/linux/toolbox-rm.md b/pages/linux/toolbox-rm.md index 929f836a39..671cfba73c 100644 --- a/pages/linux/toolbox-rm.md +++ b/pages/linux/toolbox-rm.md @@ -10,8 +10,8 @@ - Remove all `toolbox` containers: -`toolbox rm --all` +`toolbox rm {{[-a|--all]}}` - Force the removal of a currently active `toolbox` container: -`toolbox rm --force {{container_name}}` +`toolbox rm {{[-f|--force]}} {{container_name}}` diff --git a/pages/linux/toolbox-rmi.md b/pages/linux/toolbox-rmi.md index fd03ae7483..87fa85faee 100644 --- a/pages/linux/toolbox-rmi.md +++ b/pages/linux/toolbox-rmi.md @@ -10,8 +10,8 @@ - Remove all `toolbox` images: -`toolbox rmi --all` +`toolbox rmi {{[-a|--all]}}` - Force the removal of a `toolbox` image which is currently being used by a container (the container will be removed as well): -`toolbox rmi --force {{image_name}}` +`toolbox rmi {{[-f|--force]}} {{image_name}}` diff --git a/pages/linux/toolbox-run.md b/pages/linux/toolbox-run.md index e3d59ae809..08db20e0ce 100644 --- a/pages/linux/toolbox-run.md +++ b/pages/linux/toolbox-run.md @@ -6,12 +6,12 @@ - Run a command inside a specific `toolbox` container: -`toolbox run --container {{container_name}} {{command}}` +`toolbox run {{[-c|--container]}} {{container_name}} {{command}}` - Run a command inside a `toolbox` container for a specific release of a distribution: -`toolbox run --distro {{distribution}} --release {{release}} {{command}}` +`toolbox run {{[-d|--distro]}} {{distribution}} {{[-r|--release]}} {{release}} {{command}}` - Run `emacs` inside a `toolbox` container using the default image for Fedora 39: -`toolbox run --distro {{fedora}} --release {{f39}} {{emacs}}` +`toolbox run {{[-d|--distro]}} {{fedora}} {{[-r|--release]}} {{f39}} {{emacs}}` diff --git a/pages/linux/toolbox.md b/pages/linux/toolbox.md index cfe5840f40..0b9b0ef321 100644 --- a/pages/linux/toolbox.md +++ b/pages/linux/toolbox.md @@ -14,7 +14,7 @@ - Display help: -`toolbox --help` +`toolbox {{[-h|--help]}}` - Display version: