#!/bin/sh # ---------------------------------------------------------------------------- # /tmp/install.sh - lzma installation # # Creation : 2009-07-09 starwarsfan # Last update: $Id$ # # Copyright (c) 2009 the eisfair team, # # 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. # ---------------------------------------------------------------------------- # Create symlinks ln -sf /usr/bin/lzma /usr/bin/lzcat #ln -sf /usr/bin/lzdiff /usr/bin/lzcmp #ln -sf /usr/bin/lzgrep /usr/bin/lzegrep #ln -sf /usr/bin/lzgrep /usr/bin/lzfgrep #ln -sf /usr/bin/lzmore /usr/bin/lzless ln -sf /usr/bin/lzma /usr/bin/unlzma exit 0 # ---------------------------------------------------------------------------- # End # ----------------------------------------------------------------------------