uninstallmodules.sh

来自「samba最新软件」· Shell 代码 · 共 38 行

SH
38
字号
#!/bin/sh#4 July 96 Dan.Shearer@UniSA.edu.au   INSTALLPERMS=$1BASEDIR=$2LIBDIR=$3shiftshiftshiftif [ ! -d $LIBDIR ]; then  echo Directory $LIBDIR does not exist!  echo Do a "make installmodules" or "make install" first.  exit 1fifor p in $*; do  p2=`basename $p`  if [ -f $LIBDIR/$p2 ]; then    echo Removing $LIBDIR/$p2    rm -f $LIBDIR/$p2    if [ -f $LIBDIR/$p2 ]; then      echo Cannot remove $LIBDIR/$p2 ... does $USER have privileges?    fi  fidonecat << EOF======================================================================The modules have been uninstalled. You may restore the modules usingthe command "make installmodules" or "make install" to install binaries, modules, man pages and shell scripts. ======================================================================EOFexit 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?