aboutsummaryrefslogtreecommitdiffstats
path: root/test/tput.rs
blob: b2cfc590c3d12bf1eb7604dba7f62a99f8574383 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
extern mod term;

fn main () {
    if os::args().len() < 2 {
        fail!(~"usage: tput <terminfo capability>");
    }

    term::info::init();
    print(term::info::escape(os::args()[1]));
}