习惯用rm 命令的福音2022年10月16日#rm#linux#bash204经常手快了一步,脑子慢了一步,导致发生删错文件增加工作量的事故 比如这样 特此写了个简单的脚本来替换rm命令 Copy#!/bin/bash tempPath="/garbage" if [ ! -d "$tempPath" ]; then mkdir $blankPath fi mv $1 $tempPath ---