"Fossies" - the Fresh Open Source Software Archive

Member "burncdda-1.8.3/uninstall.sh" (17 May 2011, 745 Bytes) of package /linux/privat/old/burncdda-1.8.3.tar.gz:


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 #--------------------------------------------------------------
    3 # This is the burnCDDA uninstall script.
    4 #
    5 # burnCDDA is a shell script for burning Audio-CDs with cdrdao
    6 # and cdrecord.
    7 #
    8 # (C) 2001 by Thorsten Muehlfelder <thenktor@gmx.de>
    9 # burnCDDA comes with ABSOLUTELY NO WARRANTY.
   10 # This is free software, and you are welcome to redistribute it
   11 # under terms of the GNU General Public License (version 2)
   12 # as published by the Free Software Foundation.
   13 #--------------------------------------------------------------
   14 
   15 echo "Removing burnCDDA files..."
   16 rm -f /usr/bin/burncdda
   17 rm -rf /usr/share/burncdda
   18 rm -f /usr/man/man1/burncdda.1
   19 rm -f /etc/burncdda.conf
   20 rm -f /etc/burncdda.conf.old
   21 rm -f /etc/burncdda.conf.new
   22 echo "Done"