Questions tagged [perl]
Perl is a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports.
228 questions
2 votes
0 answers
76 views
Replace real path with symlink
zoxide is a replacement for cd that allows fuzzy matching against commonly accessed directories (e.g., ...
4 votes
1 answer
104 views
Bash/perl function for filtering and formatting `/etc/fstab`
The following function filters and formats /etc/fstab for future use. Comments are in TomDoc format. ...
6 votes
2 answers
782 views
Python Package Index recursive package dependency resolver
My work has an isolated network that developers write applications to run inside of. These developers often write Python code. This Python code often requires modules from the Python Package Index (...
5 votes
0 answers
210 views
Dijkstra's algorithm in Perl
I have this Perl module project. My implementation of the Dijkstra's algorithm follows: ...
4 votes
2 answers
168 views
ds - directory switcher - a *nix command line utility for tagging the directories and switching between them via tags (Perl + bash)
I have this program for tagging directories and switching between the folders via tags. The front end is written in Bash (version 4.4.23) and the back end in Perl (5.26.1). Critique request Since this ...
5 votes
1 answer
501 views
Converting IDN domains to Punycode in Perl
Description This script takes any domain input from STDIN and converts unicode domains into punycode. Features Any domains that throw an error get ignored. When fed any ASCII domains, they just pass ...
8 votes
1 answer
378 views
Parse data from Input file and print results
I have written a script which does parsing to the input file and take out some values from them with respect to the node and print the data accordingly. Below is my script, and it works as expected: <...
12 votes
4 answers
3k views
Simple C transpiler
I wrote a simple transpiler (that may be a bit of a stretch) in perl to cut down on some boiler plate code. I'm very new to perl, this being maybe my third ever project in it. My main question would ...