Answers for "how to make history | grep in windows"

1

how to make history | grep in windows

Use doskey in Windows for requesting your command history. For that you first
have to create once a storage file in some directory as follows:
doskey /history > C:/history.txt

Then just use doskey command together with fidstr to filter your history:
doskey /history | findstr "substring"
Posted by: Guest on October-16-2020
3

grep windows

findstr
Posted by: Guest on June-16-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language