{"id":2476,"date":"2017-12-08T11:25:58","date_gmt":"2017-12-08T11:25:58","guid":{"rendered":"http:\/\/www.scmgalaxy.com\/tutorials\/?p=2476"},"modified":"2025-02-01T23:08:04","modified_gmt":"2025-02-01T23:08:04","slug":"how-to-read-properties-file-using-perl","status":"publish","type":"post","link":"https:\/\/www.devopsschool.com\/blog\/how-to-read-properties-file-using-perl\/","title":{"rendered":"How to read properties file using perl"},"content":{"rendered":"<p><strong>scmuser created the topic: How to read properties file using perl<\/strong><\/p>\n<p>Hi,<\/p>\n<p>i would like to read properties file using perl&#8230;Any sample code or any example?<\/p>\n<p>My properties file is as such &#8230;<\/p>\n<p>variable1 = value<br \/>\nvariable2 = value<\/p>\n<p><strong>tpatil replied the topic: Re: How to read properties file using perl<\/strong><\/p>\n<p>Hope this helps&#8230;.<\/p>\n<p><code>{code}<br \/>\n#! \/usr\/bin\/perl -w<br \/>\nuse Getopt::Long;<br \/>\nuse strict;<\/p>\n<p>my $inputFile = \"test.properties\";<\/p>\n<p>#############################################<br \/>\n# Get the variables passed from property file<br \/>\n#############################################<br \/>\nmy @parmList = &read_parameters;<\/p>\n<p>##############################################################<br \/>\n# populate hash map<br \/>\n##############################################################<br \/>\n%parameters = @parmList;<\/p>\n<p>#print the property1 value from test.properties<br \/>\nprint \"$parameters{\"property1\"}\"\\n\"<\/p>\n<p>##############################<br \/>\n#Subroutine to read the values<br \/>\n##############################<br \/>\nsub read_parameters {<\/p>\n<p># my $importFile = $filePath . $inputFile;<br \/>\nmy $importFile = $inputFile;<br \/>\nmy $parameterName = '';<br \/>\nmy $parameterValue = '';<\/p>\n<p># open the file and read the contents into an array<br \/>\nopen(DATA, \"<$importFile\") or die \"\\n\\nUnable to open input file: $!\\n\\n\";\nmy @parmListTemp = <DATA>;<br \/>\nclose(DATA);<\/p>\n<p>my @parmList = ();<\/p>\n<p>foreach my $row (@parmListTemp){<br \/>\nchop $row;<\/p>\n<p># ignore blanks and lines that start with #<br \/>\nif (($row ne '') && ($row !~ \/^#\/)) {<\/p>\n<p># get parameters and their values and put into an array<br \/>\n($parameterName, $parameterValue) = split(\/=\/, $row);<\/p>\n<p>if($debugLevel >= 3) {print \"\\n\\n Parameter $parameterName value is $parameterValue\"; };<\/p>\n<p>push(@parmList, $parameterName);<br \/>\npush(@parmList, $parameterValue);<br \/>\n};<br \/>\n};<\/p>\n<p>return @parmList;<br \/>\n};<br \/>\n{\/code}<\/code><\/p>\n<p><strong>rajeshkumar replied the topic: Re: How to read properties file using perl<\/strong><\/p>\n<p>Hi Tushar,<\/p>\n<p>Can you please help me on this problem<\/p>\n<p><a href=\"http:\/\/www.scmgalaxy.com\/forum\/perl-script\/crea...to-mysql-db.html#679\" target=\"_blank\" rel=\"noopener\">www.scmgalaxy.com\/forum\/perl-script\/crea&#8230;to-mysql-db.html#679<\/a><\/p>\n<p>Regards,<br \/>\nRajesh Kumar<br \/>\nTwitt me @ <a href=\"http:\/\/twitter.com\/RajeshKumarIn\" target=\"_blank\" rel=\"noopener\">twitter.com\/RajeshKumarIn<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>scmuser created the topic: How to read properties file using perl Hi, i would like to read properties file using perl&#8230;Any sample code or any example? My properties file is&#8230; <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_joinchat":[],"footnotes":""},"categories":[14],"tags":[175],"class_list":["post-2476","post","type-post","status-publish","format-standard","hentry","category-perl","tag-perl"],"_links":{"self":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/2476","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/comments?post=2476"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/2476\/revisions"}],"predecessor-version":[{"id":2477,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/2476\/revisions\/2477"}],"wp:attachment":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/media?parent=2476"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/categories?post=2476"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/tags?post=2476"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}