rm.bat
来自「Reference Implementation of G.711 standa」· Batch 代码 · 共 23 行
BAT
23 行
@echo off
goto start
---------------------------------------------------------------------------
This batch file is to make a deletion of multiple files/wildcard files
in DOS; emulates the most basic behaivour of Unix rm. No, no options,
no recursions. If you want that, better find a "real" rm :-)
Simao - 12.Feb.95 - in a cloudy day in Geneva
---------------------------------------------------------------------------
:start
if "%1"=="-f" shift
if "%1"=="-F" shift
:again
if "%1"=="" goto quit
if exist %1 del %1
shift
goto again
:quit
exit
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?