Category Archives: Perl Scripting

Perl parsing field value pairs without separation

It is possible with perl functional programming to solve some interesting problems. Suppose that you have a data set that has been processed to a degree where there was an error in the processing which removed some required delimiters such … Continue reading

Posted in Perl Scripting, Server Development | Tagged , , , , , | Leave a comment

Perl Socket.so and inet_aton.so

Upon building a module for perl I ran into a build issue with Socket.so in regards to an undefined symbol: inet_aton.so. When taking a closer look at the socket.so lib, it is apparent that the “proper” libraries should be there, … Continue reading

Posted in Perl Scripting | Leave a comment

Using Perl to time Bash Calls – Bash fine grain timer

Using Perl to time Bash Calls – Bash fine grain timer I was looking for a way to cross platform way to make a microsecond timer or anything less than one second for that matter in bash. Aside from doing … Continue reading

Posted in Bash Scripting, Perl Scripting | 1 Comment

Simple Perl Template Engine

Simple Perl Template Engine   There are many uses for a template engine, but the basic idea to my knowledge is to reuse a design and replace the content quickly and efficiently. Like code re-usage, this helps to make our … Continue reading

Posted in Perl Scripting, Server Development | Leave a comment