aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2020-06-20 19:13:12 +0800
committerAaron LI <aly@aaronly.me>2020-06-20 19:13:12 +0800
commit88d85c80d025e0fd6b7c8fad155dc3a1cdc8b992 (patch)
tree3be13287a2c0952f25a9506d9554ef127197bf43
parent70a7ec1719bf5ee9cedac46412fb4f7dbb9de926 (diff)
downloadatoolbox-88d85c80d025e0fd6b7c8fad155dc3a1cdc8b992.tar.bz2
Add unix/cat-lps.pl: Cat file at a given speed of line/secHEADmaster
Credit: https://superuser.com/a/526249
-rwxr-xr-xunix/cat-lps.pl21
1 files changed, 21 insertions, 0 deletions
diff --git a/unix/cat-lps.pl b/unix/cat-lps.pl
new file mode 100755
index 0000000..c83f037
--- /dev/null
+++ b/unix/cat-lps.pl
@@ -0,0 +1,21 @@
+#!/usr/bin/env perl
+#
+# Cat file to terminal at particular speed of lines per second
+# https://superuser.com/a/526249
+#
+# Usage: cat-lps.pl [lps] [file]...
+#
+
+use warnings;
+use strict;
+use Time::HiRes qw|time|;
+
+my $start=time;
+my $lps=300;
+
+$lps=shift @ARGV if @ARGV && $ARGV[0]=~/^(\d+)$/;
+my $sleepPerLine=1/$lps;
+
+print &&
+ select undef,undef,undef,($start + $sleepPerLine*$. - Time::HiRes::time)
+ while <>