来自于《计算机教育中缺失的一课》02
案例脚本一创建一个目录,并切换到创建的目录
# mcd.sh
mcd(){
mkdir -p "$1"
cd "$1"
}
可将mcd.sh 加载到当前对话框source mcd.sh
2023-05-16