Skip to content

Instantly share code, notes, and snippets.

@treyharris
Last active August 29, 2015 14:05
Show Gist options
  • Save treyharris/0eee39b6ea987d808ec6 to your computer and use it in GitHub Desktop.
Save treyharris/0eee39b6ea987d808ec6 to your computer and use it in GitHub Desktop.
# Clear scrollback buffer portably
if [[ $TERM_PROGRAM =~ 'Apple_Terminal' ]]; then
clear
printf '\e[3J'
elif [[ $TERM_PROGRAM =~ 'iTerm2' ]]; then
printf '\e]50;ClearScrollback\a'
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment