rmdirectories.sh

来自「COOOL:CWP面向对象最优化库(CWP Object Oriented Op」· Shell 代码 · 共 22 行

SH
22
字号
#! /bin/sh# delete directories COOOL createdI=$COOOLROOT/includeL=$COOOLROOT/libM=$COOOLROOT/manB=$COOOLROOT/binecho -n "Do you want to remove the directories? [y/n]"read RESP	case $RESP in		y*|Y*)  # remove		  rmdir $I $L $B $M/man3 $M/cat $M		  ;;		*)   #not to remove		   echo "Directories are not removed "		  ;;	esacexitexit 0

⌨️ 快捷键说明

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