我可以替换`ghci`窗口标题中的文本(即PowerShell.exe或cmd.exe窗口标题)吗?

时间:2014-12-23 15:22:09

标签: haskell ghci

我可以替换ghci窗口标题中的文本(例如 PowerShell.exe cmd.exe 窗口标题)吗?

enter image description here

2 个答案:

答案 0 :(得分:7)

使用System.Process.callCommand包中的process,您可以调用title可执行文件:

> :m System.Process
> callCommand "title A new title for the console window"

答案 1 :(得分:5)

与执行任何shell命令的方式相同 - 使用:!

> :!Title NewTitle