cli-sedHow can I view my command line sed history?
The command line history of sed can be viewed by using the sed -n -e 'H;${x;s/\n/ /g;s/^,*//;s/,*$//;p;}' ~/.bash_history | sed -e 's/^[ \t]*//' command. This command prints the entire command line history of sed, including all the commands, options, and arguments used.
For example, to view the command line history of sed from the last 7 days, the following command can be used:
sed -n -e 'H;${x;s/\n/ /g;s/^,*//;s/,*$//;p;}' ~/.bash_history | sed -e 's/^[ \t]*//' | grep -E "^sed .* [0-9]{4}-[0-9]{2}-[0-9]{2}"
The command is composed of several parts:
sed -n -e 'H;${x;s/\n/ /g;s/^,*//;s/,*$//;p;}' ~/.bash_history– This part of the command prints the entire command line history of sed, including all the commands, options, and arguments used.sed -e 's/^[ \t]*//'– This part of the command removes any leading whitespace.grep -E "^sed .* [0-9]{4}-[0-9]{2}-[0-9]{2}"– This part of the command filters the command line history of sed to only display commands from the last 7 days.
Helpful links
More of Cli Sed
- How can I use SED in a Windows command line interface?
- How can I use sed to manipulate a JSON file from the command line?
- How can I use a variable with the sed command line tool?
- How do I use the CLI to configure Zabbix?
- How can I troubleshoot when my CLI sed command is not working?
- How can I use the command line to run a sed job?
- How can I set up the Xcode command line interface?
- How can I use CLI sed and Yarn together to develop software?
- How do I use the command line to edit text using sed?
- How can I use cli sed to select an Azure subscription?
See more codes...