You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
388 B
24 lines
388 B
@echo off
|
|
if not exist %user%\black-list.conf echo --------------模块黑名单--------- >%user%\black-list.conf
|
|
if "%1"=="edit" goto
|
|
if "%1"=="type" goto type
|
|
echo 对Modules黑名单进行编辑
|
|
echo 用法:
|
|
echo black [命令]
|
|
echo type 浏览
|
|
echo edit 编辑
|
|
goto end
|
|
|
|
|
|
:type
|
|
cls
|
|
type %user%\black-list.conf
|
|
echo.
|
|
goto end
|
|
|
|
:edit
|
|
notepad %user%\black-list.conf
|
|
goto end
|
|
|
|
|
|
:end |