summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-02-24 03:10:31 -0600
committerJesse Luehrs <doy@tozt.net>2012-02-24 03:10:31 -0600
commit094e296335e1d6d5e3de0d0d5484cba83c8a85ae (patch)
treed9daa65d83e5a5b88083861bb193c31d97badc72 /bin
parentdb52c05fded92da62425482a96b9bf2a4f1495ea (diff)
downloadapp-ttyrec-094e296335e1d6d5e3de0d0d5484cba83c8a85ae.tar.gz
app-ttyrec-094e296335e1d6d5e3de0d0d5484cba83c8a85ae.zip
initial implementation
Diffstat (limited to 'bin')
-rw-r--r--bin/ttyrec10
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/ttyrec b/bin/ttyrec
new file mode 100644
index 0000000..aa9b966
--- /dev/null
+++ b/bin/ttyrec
@@ -0,0 +1,10 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+
+use App::Ttyrec;
+
+@ARGV = ($ENV{SHELL} || '/bin/sh')
+ unless @ARGV;
+
+App::Ttyrec->new->run(@ARGV);