Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kfly8/p5-app-ppe
Prettify Perl Error messages
https://github.com/kfly8/p5-app-ppe
perl perl5 perl5-module ppe prettifier
Last synced: about 2 months ago
JSON representation
Prettify Perl Error messages
- Host: GitHub
- URL: https://github.com/kfly8/p5-app-ppe
- Owner: kfly8
- License: other
- Created: 2017-12-02T11:49:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-31T14:44:32.000Z (almost 6 years ago)
- Last Synced: 2024-10-11T21:14:49.626Z (2 months ago)
- Topics: perl, perl5, perl5-module, ppe, prettifier
- Language: Perl
- Size: 56.6 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/kfly8/App-PPE.svg?branch=master)](https://travis-ci.org/kfly8/App-PPE)
# NAMEppe - Prettify Perl Error messages
# SYNOPSIS
% perl ~/foo.pl 2>&1 | ppe
foo.pl:5: [WARN] (W) Use of uninitialized value in warn# DESCRIPTION
[ppe](https://metacpan.org/pod/ppe) is a prettifier for Perl error messages.
When you are writing such as following:
use strict;
use warnings;my $str;
warn $str;This code outputs following result:
When you are writing such as following:
use strict;
use warnings;sub f {
This code outputs following result:
# SEE ALSO
[perldiag](https://metacpan.org/pod/perldiag)