Guest User

Untitled

a guest
May 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. if [ -n "$PS1" ]; then
  2. if PATH=$PATH:/usr/bin tty -s; then
  3. # Allow control-s to invoke readline search, instead of freezing the
  4. # terminal
  5. PATH=$PATH:/bin stty -ixon
  6. fi
  7. # These let me have have all the keys work the way I like for Emacs.
  8. case "$OSTYPE" in
  9. cygwin*)
  10. if [ "$TERM" != "emacs" ]; then
  11. PATH=$PATH:/bin stty erase ^?
  12. fi
  13. ;;
  14. esac
  15. fi
Add Comment
Please, Sign In to add comment