⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stlfilt.bat

📁 STLstlfilt.zip
💻 BAT
字号:
@echo off
rem STLFilt.BAT: Toggle STL Error decryption filtering
rem
rem Part of the STL Error Message Decryptor package
rem Written by Leor Zolman (leor@bdsoft.com)
rem
rem usage:
rem		STLFilt on         - turn on STL filtering
rem		STLFilt off		   - turns off STL filtering
rem		STLFilt			   - displays current status
rem
rem Works in conjuction with CL.CPP: If a "toggle control" file (hard-wired
rem filename: FILTERING.ON) is detected in the directory specified by the
rem toggle_file_dir configuration parameter (in Proxy-CL.INI), then output
rem of CL2.EXE is filtered through the Perl script. Else, it is not.

rem The following pathname must match the *base* pathname (no extension) of the
rem location of the toggle control file. E.g., if the toggle_file_dir setting
rem in Proxy-CL.INI is set to C:\, set TOGGLE_BASE to C:\filtering

set TOGGLE_BASE=c:\filtering

if "%1" == "" goto prereport
if "%1" == "on" goto turnon
if "%1" == "off" goto turnoff

echo.
echo To change STL filtering mode, use:
echo    stlfilt [on or off]
echo.
:prereport
echo Current setting:
goto report

:turnon
if exist %TOGGLE_BASE%.off del %TOGGLE_BASE%.off > nul:
if not exist %TOGGLE_BASE%.ON echo This file enables STL error decryption. > %TOGGLE_BASE%.ON
goto report

:turnoff
if exist %TOGGLE_BASE%.ON del %TOGGLE_BASE%.ON > nul:
if not exist %TOGGLE_BASE%.OFF echo This file disables STL error decryption. > %TOGGLE_BASE%.OFF
goto report

:report
if exist %TOGGLE_BASE%.ON echo STL Filtering is ON.
if exist %TOGGLE_BASE%.OFF echo STL Filtering is OFF.
if exist %TOGGLE_BASE%.ON goto done
if exist %TOGGLE_BASE%.OFF goto done
echo STL Filtering has never been specified. It is OFF by default.
:done

⌨️ 快捷键说明

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