Remove unnecessary backslashes

Signed-off-by: Adam Jones <domdomegg+git@gmail.com>
This commit is contained in:
Adam Jones
2023-08-02 15:01:16 +01:00
committed by GitHub
parent 18e75daa53
commit 15f35d3548

View File

@ -40,12 +40,12 @@ podman completion -f /etc/bash_completion.d/podman bash
### ZSH ### ZSH
Shell completion needs to be already enabled in the environment. The following can be executed:\ Shell completion needs to be already enabled in the environment. The following can be executed:
``` ```
echo "autoload -U compinit; compinit" >> ~/.zshrc echo "autoload -U compinit; compinit" >> ~/.zshrc
``` ```
To make it available for all zsh sessions run:\ To make it available for all zsh sessions run:
``` ```
podman completion -f "${fpath[1]}/_podman" zsh podman completion -f "${fpath[1]}/_podman" zsh
``` ```