12 lines
133 B
Bash
Executable File
12 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
(remove)
|
|
update-alternatives --remove which /usr/bin/which.debianutils
|
|
;;
|
|
esac
|
|
|
|
|