summaryrefslogtreecommitdiffstats
path: root/bin/ttyrec
blob: aa9b966e3b41a3580ac6f415f112d778f5ed683d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env perl
use strict;
use warnings;

use App::Ttyrec;

@ARGV = ($ENV{SHELL} || '/bin/sh')
    unless @ARGV;

App::Ttyrec->new->run(@ARGV);