libdevel-autoflush-perl 0.06-3 source package in Ubuntu

Changelog

libdevel-autoflush-perl (0.06-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libdevel-autoflush-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 13 Oct 2022 16:18:43 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libdevel-autoflush-perl_0.06-3.dsc 2.1 KiB 69e29c32ccbec464d4958a0cf5b9363005b0acd70e3612af79a55ff2ef932722
libdevel-autoflush-perl_0.06.orig.tar.gz 12.6 KiB 6ff145cecdeabc7f3527653356795af4230df695b7d8704f96987a7f95443ed4
libdevel-autoflush-perl_0.06-3.debian.tar.xz 2.5 KiB 1e42b6cdda2c2481deaaefa180c2a41c59b27d9848e600bf61bb6d144fe57700

Available diffs

No changes file available.

Binary packages built by this source

libdevel-autoflush-perl: module for setting autoflush from the command line

 Devel::Autoflush is a hack to set autoflush for STDOUT and STDERR from the
 command line or from "PERL5OPT" for code that needs it but doesn't have it.
 .
 This often happens when prompting:
 .
   # guess.pl
   print "Guess a number: ";
   $n = <STDIN>;
 .
 As long as the output is going to a terminal, the prompt is flushed when STDIN
 is read. However, if the output is being piped, the print statement will
 not automatically be flushed, no prompt will be seen and the program will
 silently appear to hang while waiting for input.