README 487 B

12345678910
  1. perl-File-pushd (change directory temporarily for a limited scope)
  2. File::pushd does a temporary chdir that is easily and automatically
  3. reverted, similar to pushd in some Unix command shells. It works by
  4. creating an object that caches the original working directory. When
  5. the object is destroyed, the destructor calls chdir to revert to the
  6. original working directory. By storing the object in a lexical
  7. variable with a limited scope, this happens automatically at the end
  8. of the scope.