From: Jeroen van Wolffelaar Date: Mon, 20 Feb 2006 14:32:16 +0000 (+0000) Subject: Unbuffered output, for tail -f'ing cron.log X-Git-Tag: switch-to-templates~111 X-Git-Url: https://git.deb.at/?p=deb%2Fpackages.git;a=commitdiff_plain;h=fcd2a8e03040589f3048e91737d4b2863c8521fd Unbuffered output, for tail -f'ing cron.log --- diff --git a/bin/parse-contents b/bin/parse-contents index 541cba2..12b7ed8 100755 --- a/bin/parse-contents +++ b/bin/parse-contents @@ -22,6 +22,8 @@ use strict; use lib './lib'; +$| = 1; + # Important, we want sorting and such to happen like in the C locale: binary, # without any fancy collation. FIXME: is this actually adequate? $ENV{"LC_ALL"} = 'C'; diff --git a/bin/parse-packages b/bin/parse-packages index e6a3082..399a62c 100755 --- a/bin/parse-packages +++ b/bin/parse-packages @@ -22,6 +22,8 @@ use strict; use lib './lib'; +$| = 1; + my $what = $ARGV[0] ? "non-free" : "*"; # max. distinct results for a given package postfix my $MAX_PACKAGE_POSTFIXES = 100; diff --git a/bin/parse-sources b/bin/parse-sources index 89f071d..6456c0e 100755 --- a/bin/parse-sources +++ b/bin/parse-sources @@ -22,6 +22,8 @@ use strict; use lib './lib'; +$| = 1; + my $what = $ARGV[0] ? "non-free" : "*"; # max. distinct results for a given package postfix my $MAX_SOURCE_POSTFIXES = 100;