Windows

是否存在全域的、持久的 CMD 歷史?

  • April 22, 2021

有時我會忘記 CMD 命令的確切語法,然後我想搜尋我自己的 CMD 歷史記錄。顯然,在同一個會話中,您可以使用向上和向下箭頭鍵瀏覽它,但是以前的 CMD 會話的歷史呢?是否有一個文件,一個記錄歷史被寫入的日誌,或者它們都進入了數字涅槃?

謝謝!

不可以,會話結束時無法保存 Windows 命令提示歷史記錄。

不是本地的,但請查看: http: //mridgers.github.io/clink/,使 cmd.exe 更有效率。從項目頁面引用功能:

Powerful Bash-like line editing from GNU's Readline library.
Superior path completion (TAB).
Paste from clipboard (Ctrl-V).
Support for the completion of executables/commands, and environment variables.
Undo/Redo (Ctrl-_ or Ctrl-X, Ctrl-U)
Improved command line history.
Persists across sessions.
Searchable (Ctrl-R and Ctrl-S).
History expansion (e.g. !!, !<string>, and !$).
Scriptable completion using Lua.

引用自:https://serverfault.com/questions/95404