Created
June 25, 2015 15:02
-
-
Save hibariya/c2f8af527dc1cf94b609 to your computer and use it in GitHub Desktop.
Update self termios and break the terminal.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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