gpt4 book ai didi

batch-file - 将 CMD 标题设置为正斜杠和问号(批处理)

转载 作者:行者123 更新时间:2023-12-03 22:46:00 27 4
gpt4 key购买 nike

我想知道是否可以将 CMD 的窗口标题更改为 /?
我试过使用 ^/? , ^/^? , 和 "/?"但它们似乎都不起作用。

有人有什么建议吗?

谢谢

最佳答案

添加一些不可见的字符是可能的。
这个想法来自@npocmaka SO: How can I set set a title that start with coma,semicolon or equal sign?
标题以逗号开头的问题也可以用 LF 字符解决,但在您的情况下,LF 对字符串中的任何地方都没有帮助。

@echo off

(set LF=^
%=empty=%
)

::Create a FS variable
call :hexprint "0x1C" FS

title /%FS%?
exit /b

:hexPrint string [rtnVar]
for /f eol^=^%LF%%LF%^ delims^= %%A in (
'forfiles /p "%~dp0." /m "%~nx0" /c "cmd /c echo(%~1"'
) do if "%~2" neq "" (set %~2=%%A) else echo(%%A
exit /b

关于batch-file - 将 CMD 标题设置为正斜杠和问号(批处理),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42546112/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com