Skip to content

Instantly share code, notes, and snippets.

@rightfold
Created September 25, 2014 10:12
Show Gist options
  • Save rightfold/7fcc99b84a86cc256ec1 to your computer and use it in GitHub Desktop.
Save rightfold/7fcc99b84a86cc256ec1 to your computer and use it in GitHub Desktop.
kim-jong-deux :: ~ % cat hello.cpp
#include <iostream>
#include <unistd.h>
int main() {
std::cout << isatty(0) << '\n';
std::cout << isatty(1) << '\n';
std::cout << isatty(2) << '\n';
}
kim-jong-deux :: ~ % ./a.out
1
1
1
kim-jong-deux :: ~ % ./a.out | cat
1
0
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment