https://github.com/cirosantilli/perl-cheat
https://github.com/cirosantilli/perl-cheat
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cirosantilli/perl-cheat
- Owner: cirosantilli
- Created: 2015-10-12T12:10:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-19T21:35:56.000Z (over 9 years ago)
- Last Synced: 2025-01-02T05:13:49.351Z (4 months ago)
- Language: Perl
- Size: 7.81 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Perl
The focus of this is knowing the minimum possible to be able to do one liners, specially in text processing.
For larger programs, use Python instead, because Perl is too insane and is dead.
Perl is part of the LSB, and should come with any Linux distro (like Python).
The following contains lots of man pages and HTML docs:
man perlrun
man perldoc
man perlcheatIn Ubuntu install docs with:
sudo aptitude install -y perl-doc
## CPAN
Name of the major package repository for Perl modules, and of the command line tool used to install them.
Install the original markdown:
cpan Text::Markdown
TODO does not install it as an executable. TODO how to do it?