uninstallheader.sh

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

SH
36
字号
#!/bin/sh# based on uninstallbin.sh:#  4 July 96 Dan.Shearer@UniSA.edu.au   INCLUDEDIR=$1shiftif [ ! -d $INCLUDEDIR ]; then  echo Directory $INCLUDEDIR does not exist!  echo Do a "make installbin" or "make install" first.  exit 1fifor p in $*; do  p2=`basename $p`  if [ -f $INCLUDEDIR/$p2 ]; then    echo Removing $INCLUDEDIR/$p2    rm -f $INCLUDEDIR/$p2    if [ -f $INCLUDEDIR/$p2 ]; then      echo Cannot remove $INCLUDEDIR/$p2 ... does $USER have privileges?    fi  fidonecat << EOF======================================================================The headers have been uninstalled. You may restore the headers usingthe command "make installheader" or "make install" to install binaries, man pages, modules and shell scripts. You can restore a previousversion of the headers (if there were any) using "make revert".======================================================================EOFexit 0

⌨️ 快捷键说明

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