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