Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

grep - Is there a way to filter the command history in Windows using cmder?

In Linux I can doing something like history | grep abc and that will only bring up the commands that start with 'abc'. With Windows in cmder, I can bring up the history of commands with the history command, but I can't find a way to filter it down by the first few letters of the command. There seems to be no equivalent of | and grep.

question from:https://stackoverflow.com/questions/65848917/is-there-a-way-to-filter-the-command-history-in-windows-using-cmder

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

cat %CMDER_ROOT%config.history | grep abc

In Cmder::Cmder sessions history is a doskey macro. The output of a macro cannot be passed using the pipe | but you could use the command that is the content of the doskey macro.

Referenced: https://github.com/cmderdev/cmder/issues/1770


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...