📄 uninstallheader.sh
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -