Skip to content

Instantly share code, notes, and snippets.

@pormr
Created April 2, 2025 06:46
Show Gist options
  • Select an option

  • Save pormr/c752fb816db76013d2ef45d567e5914c to your computer and use it in GitHub Desktop.

Select an option

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
# 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