Skip to content

Instantly share code, notes, and snippets.

@hibariya
Created June 25, 2015 15:02
Show Gist options
  • Save hibariya/c2f8af527dc1cf94b609 to your computer and use it in GitHub Desktop.
Save hibariya/c2f8af527dc1cf94b609 to your computer and use it in GitHub Desktop.
Update self termios and break the terminal.
#include <unistd.h>
#include <termios.h>
int
main() {
struct termios orig_termios;
tcgetattr(STDIN_FILENO, &orig_termios);
orig_termios.c_oflag &= ~(OPOST);
tcsetattr(STDIN_FILENO, TCSANOW, &orig_termios);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment