9 lines
131 B
Bash
9 lines
131 B
Bash
#!/bin/sh
|
|
|
|
# Remove the bash completion
|
|
if [ -f /etc/bash_completion.d/pvc ]; then
|
|
rm -f /etc/bash_completion.d/pvc
|
|
fi
|
|
|
|
exit 0
|