File: ENVDumper.pm

package info (click to toggle)
liblocal-lib-perl 2.000014-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 308 kB
  • ctags: 72
  • sloc: perl: 727; makefile: 22
file content (9 lines) | stat: -rw-r--r-- 122 bytes parent folder | download
1
2
3
4
5
6
7
8
9
package t::lib::ENVDumper;
use Data::Dumper;

sub import {
  local $Data::Dumper::Terse = 1;
  print Dumper(\%ENV);
}

1;