~ubuntu-branches/ubuntu/precise/byobu/precise

« back to all changes in this revision

Viewing changes to screen-launcher-uninstall

  • Committer: Bazaar Package Importer
  • Author(s): Dustin Kirkland
  • Date: 2009-05-07 00:54:43 UTC
  • Revision ID: james.westby@ubuntu.com-20090507005443-6ryuqfkl4vphssnw
Tags: upstream-2.1
ImportĀ upstreamĀ versionĀ 2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
#
 
3
#    screen-launcher-uninstall
 
4
#    Copyright (C) 2008 Canonical Ltd.
 
5
#
 
6
#    Authors: Nick Barcet <nick.barcet@ubuntu.com>
 
7
#             Dustin Kirkland <kirkland@canonical.com>
 
8
#
 
9
#    This program is free software: you can redistribute it and/or modify
 
10
#    it under the terms of the GNU General Public License as published by
 
11
#    the Free Software Foundation, version 3 of the License.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
 
 
21
 
 
22
remove_screen_launcher() {
 
23
        dest=$1
 
24
        if [ -w "$dest" ]; then
 
25
                sed -i '/\/usr\/bin\/screen-launcher$/d' "$dest"
 
26
        fi
 
27
}
 
28
 
 
29
for i in ".profile" ".bashrc" ".bash_profile" ".zprofile"; do
 
30
        remove_screen_launcher "$HOME/$i"
 
31
done