如何增加 tcl 的命令历史大小 shell

How to increase command history size for tcl shell

我用的是tcl8.6,发现'history'里面记录的命令只有20条。 我如何增加记录在 'history' 中的命令大小 for tcl shell?

看起来你想要 history keep $biggerNumber -- http://www.tcl-lang.org/man/tcl8.6/TclCmd/history.htm

根据您使用的平台,您可能会喜欢 rlwrap 它为您提供了所有 readline 行编辑功能:历史箭头键等。

alias tclsh='rlwrap tclsh'

或者,Tkcon也是不错的选择。