Created
April 2, 2025 06:46
-
-
Save pormr/c752fb816db76013d2ef45d567e5914c to your computer and use it in GitHub Desktop.
Pin entries to persistently stay at the top of your Bash history for easy access
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Add the code snippet below to your .bashrc file | |
| PINNED_ITEMS="$HOME/.bash_pinned" | |
| export HISTSIZE=$(( HISTSIZE + $(wc -l < $PINNED_ITEMS) )) | |
| HISTFILE="$PINNED_ITEMS" HISTCMD=0 history -r | |
| history -a | |
| unset PINNED_ITEMS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment