Skip to content

Instantly share code, notes, and snippets.

@alsmola
Created April 28, 2018 03:17
Show Gist options
  • Save alsmola/a2469c3efb5342bb09362b8794e77bf4 to your computer and use it in GitHub Desktop.
Save alsmola/a2469c3efb5342bb09362b8794e77bf4 to your computer and use it in GitHub Desktop.
function hide {
export OLD_PS1=${PS1}
set +o history
PS1="\e[41m $PS1 \e[m"
}
function show {
set -o history
PS1=${OLD_PS1}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment