"Fossies" - the Fresh Open Source Software Archive

Member "xterm-379/package/debian/prerm" (29 Oct 2014, 183 Bytes) of package /linux/misc/xterm-379.tgz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 #! /bin/sh
    2 echo "** prerm script for xterm: $*"
    3 
    4 set -e
    5 
    6 if [ "x$1" != "xupgrade" ]; then
    7     update-alternatives --remove x-terminal-emulator /usr/bin/xterm-dev
    8 fi
    9 
   10 #DEBHELPER#
   11 
   12 exit 0