我可以替换ghci
窗口标题中的文本(例如 PowerShell.exe 或 cmd.exe 窗口标题)吗?
答案 0 :(得分:7)
使用System.Process.callCommand
包中的process
,您可以调用title
可执行文件:
> :m System.Process
> callCommand "title A new title for the console window"
答案 1 :(得分:5)
与执行任何shell命令的方式相同 - 使用:!
。
> :!Title NewTitle