Skip to content

Instantly share code, notes, and snippets.

@olemb
Created June 27, 2013 11:39
Show Gist options
  • Save olemb/5875810 to your computer and use it in GitHub Desktop.
Save olemb/5875810 to your computer and use it in GitHub Desktop.
ponpoff - turn prompt on and off in bash
# Turn prompt off
function poff {
PS1='$ '
}
 
# Turn prompt on
function pon {
# Todo: make this work on mac
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
}
 
pon # Start with prompt on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment