uninstallbin.sh
来自「samba最新软件」· Shell 代码 · 共 43 行
SH
43 行
#!/bin/sh#4 July 96 Dan.Shearer@UniSA.edu.au INSTALLPERMS=$1BASEDIR=$2BINDIR=$3LIBDIR=$4VARDIR=$5shiftshiftshiftshiftshiftif [ ! -d $BINDIR ]; then echo Directory $BINDIR does not exist! echo Do a "make installbin" or "make install" first. exit 1fifor p in $*; do p2=`basename $p` if [ -f $BINDIR/$p2 ]; then echo Removing $BINDIR/$p2 rm -f $BINDIR/$p2 if [ -f $BINDIR/$p2 ]; then echo Cannot remove $BINDIR/$p2 ... does $USER have privileges? fi fidonecat << EOF======================================================================The binaries have been uninstalled. You may restore the binaries usingthe command "make installbin" or "make install" to install binaries, man pages, modules and shell scripts. You can restore a previousversion of the binaries (if there were any) using "make revert".======================================================================EOFexit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?