#! /bin/sh #---------------------------------------------------------------------------- # del-menu - delete menu # # Copyright (c) 2001-2002 Michell Schimanski # Copyright (c) 2003 Frank Meyer # # Creation: 09.12.2001 ms # Last Update: 19.07.2003 fm complete rewrite # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #---------------------------------------------------------------------------- menu_item=$1 menu_file=$2 grep -v "^$menu_item " $menu_file > $menu_file.tmp cp $menu_file.tmp $menu_file # don't mv, keep permissions rm -f $menu_file.tmp