File: mc.prerm

package info (click to toggle)
mc 3%3A4.8.29-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 23,056 kB
  • sloc: ansic: 98,016; sh: 8,293; perl: 2,325; makefile: 1,458; python: 410; cs: 44; lisp: 44; sed: 16
file content (11 lines) | stat: -rw-r--r-- 168 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e

case "$1" in
	remove)
		update-alternatives --remove editor /usr/bin/mcedit
		update-alternatives --remove view /usr/bin/mcview
	;;
esac

#DEBHELPER#