summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
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);