libfile-chdir-perl 0.1006-1 source package in Ubuntu

Changelog

libfile-chdir-perl (0.1006-1) unstable; urgency=low

  * New upstream release
 -- Ubuntu Archive Auto-Sync <email address hidden>   Mon,  05 Dec 2011 11:00:48 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Precise
Original maintainer:
James Bromberger
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe perl

Builds

Precise: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libfile-chdir-perl_0.1006.orig.tar.gz 20.7 KiB b26e91f8b5480544da599412612ff9287007be9703d41c35251f09c5ff19879a
libfile-chdir-perl_0.1006-1.diff.gz 2.4 KiB 640575a330b106e08c2997db19a9cedb7e8283136e5313d3bb1a7defcfcbccab
libfile-chdir-perl_0.1006-1.dsc 1.1 KiB 36013a39fad933bca4e18eb63c9dbf090e5b9231a88981956046d1f2afcd5cfb

Available diffs

View changes file

Binary packages built by this source

libfile-chdir-perl: more sensible way to change directories

 Perl's chdir() has the unfortunate problem of being very, very, very
 global. If any part of your program calls chdir() or if any library you
 use calls chdir(), it changes the current working directory for the
 whole program.
 .
 This sucks.
 .
 File::chdir gives you an alternative, $CWD and @CWD. These two variables
 combine all the power of chdir(), File::Spec and Cwd.