8 lines
97 B
Bash
Executable file
8 lines
97 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = remove ]; then
|
|
update-alternatives --remove mt /bin/mt-gnu
|
|
fi
|