uninstalllib.sh
来自「samba最新软件」· Shell 代码 · 共 36 行
SH
36 行
#!/bin/sh# based on uninstallbin.sh# 4 July 96 Dan.Shearer@UniSA.edu.au LIBDIR=$1shiftif [ ! -d $LIBDIR ]; then echo Directory $LIBDIR does not exist! echo Do a "make installbin" 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 shared libraries have been uninstalled. You may restore the libraries usingthe command "make installlib" or "make install" to install binaries, man pages, modules and shell scripts. You can restore a previousversion of the libraries (if there were any) using "make revert".======================================================================EOFexit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?