dBM is an identifier meaning 'decibels referred to one milliwatt,' the common reference point for power levels in telecommunications circuits. Research DBM
Perl is an interpreted language optimised for scanning arbitrary text files, extracting information from those text files, and printing reports based on that information. It's also a good language for many system management tasks. The language is intended to be practical (easy to use, efficient, complete) rather than beautiful (tiny, elegant, minimal). It combines some of the best features of C, sed, awk, and sh. Expression syntax corresponds quite closely to C expression syntax. Unlike most Unix utilities, Perl does not arbitrarily limit the size of your data - if you've got the memory, Perl can read in an entire file as a single string. Recursion is of unlimited depth. And the hash tables used by associative arrays grow as necessary to prevent degraded performance. Perl uses sophisticated pattern matching techniques to scan large amounts of data very quickly. Although optimised for scanning text, Perl can also deal with binary data, and can make dbm files look like associative arrays. Research Perl More information about Perl