dotfiles/run_onchange_docker_completion.sh

10 lines
171 B
Bash
Executable file

#!/bin/sh
FILE="/usr/share/zsh/vendor-completions/_docker"
if [ -f "$FILE" ]; then
echo "Removing $FILE"
sudo rm "$FILE"
else
echo "$FILE does not exist"
fi