Sponsored Content
Top Forums Shell Programming and Scripting Read Data from Config file using Perl Post 302601956 by parthmittal2007 on Saturday 25th of February 2012 06:47:16 AM
Old 02-25-2012
Read Data from Config file using Perl

Hi All,
Can anyone please explain me how to read data from config file in Perl.

Suppose i have a config file named cfile. The data in config file is

[head]
name=parth
lname=mittal
user=2007
hostname=fluoride

[tail]
username=parthmittal
password=XXXXXX
account=unix
url=www.unix.com



Something like action we perform to fetch data from cfile like
object->tail.username and we get parthmittal
please explaim me how to fetch data and which package and module is used
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to Read a config file and Assign to Variable

I have removeConfig file, it contains the dir paths for removing. I need to read line by line and assign to variable. any idea? (1 Reply)
Discussion started by: redlotus72
1 Replies

2. Shell Programming and Scripting

how to read the variable from config file

how to read the variable from config file eg: a.cfg below config file config file which contain a=`hostname` b=250 a.sh is shell script echo "$a and $b" if i run "a.sh 1.cfg" it works but when i declare N number of variable it wont works.. can u please suggest for that ? (1 Reply)
Discussion started by: mail2sant
1 Replies

3. Shell Programming and Scripting

Read from a config file.

Hello All, I have a config file which has the following data : export DBCHECKSUM001="/home/srvcdesk/DBCheckSum/DBCheckSum001.cfg" export DBCHECKSUM002="/home/srvcdesk/DBCheckSum/DBCheckSum002.cfg" export DBCHECKSUM003="/home/srvcdesk/DBCheckSum/DBCheckSum003.cfg" export... (1 Reply)
Discussion started by: Veenak15
1 Replies

4. UNIX and Linux Applications

Autosys Config file update on a read-only filer

Hi To All Genius out there, We are running autosys application on solaris 10. In autosys we have a configuration file that contains an Autosys instance configuration data and is located on a NFS filer on which we have a read-only access. Our Autosys environment is on a dual server... (0 Replies)
Discussion started by: whn_chips_r_dwn
0 Replies

5. Solaris

Autosys Config file update on a read-only filer

Hi To All Genius out there, We are running autosys application on solaris 10. In autosys we have a configuration file that contains an Autosys instance configuration data and is located on a NFS filer on which we have a read-only access. Our Autosys environment is on a dual server mode(Active... (0 Replies)
Discussion started by: whn_chips_r_dwn
0 Replies

6. Programming

Read arguments from a config file in C

Hello everybody, I'm coding a program in C and i'm getting troubles with this. I need to read a config file and store the arguments into individual variables, let's say the config file looks like the following: #This is the configuration file... 192.168.0.1 A1:B1:C1:D1:E1:F1 192.168.0.2... (2 Replies)
Discussion started by: semash!
2 Replies

7. Shell Programming and Scripting

how to read the variable indivdually from config file

how to read the variable indivdually ( line by line ) in shell script eg : i have the config file where contain cat /home/user01/ilap/conf/input.conf node.txt node2.txt node3.txt i need to run script like /home/user01/ilap/exe/run.sh /home/user01/ilap/conf/input.conf ... (1 Reply)
Discussion started by: mail2sant
1 Replies

8. Shell Programming and Scripting

Read from config file and use it in perl program

Hi, I want to configure some values in config file like below work_dir /home/work csv_dir /home/csv sql_dir /home/sqls reportfirst yes and i want to store each value in variable to use it further in my my perl program ?? any thought on this(i am new to perl) ? ... (2 Replies)
Discussion started by: raghavendra.nsn
2 Replies

9. Shell Programming and Scripting

Perl: How to read text from file and process $variable in that data too.

In the hello.htm have the sentenses: Hello $name How are you? The perl script: $name = "David"; open(HEADER,"hello.htm"); while(<HEADER>) { $html .= $_; } close(HEADER); print "$html";I making something about template. But it can't process the $name variable. (4 Replies)
Discussion started by: natong
4 Replies

10. Shell Programming and Scripting

In PErl script: need to read the data one file and generate multiple files based on the data

We have the data looks like below in a log file. I want to generat files based on the string between two hash(#) symbol like below Source: #ext1#test1.tale2 drop #ext1#test11.tale21 drop #ext1#test123.tale21 drop #ext2#test1.tale21 drop #ext2#test12.tale21 drop #ext3#test11.tale21 drop... (5 Replies)
Discussion started by: Sanjeev G
5 Replies
Dancer::Config::Object(3pm)				User Contributed Perl Documentation			       Dancer::Config::Object(3pm)

NAME
Dancer::Config::Object - Access the config via methods instead of hashrefs DESCRIPTION
If "strict_config" is set to a true value in the configuration, the "config()" subroutine will return an object instead of a hashref. Instead of this: my $serializer = config->{serializer}; my $username = config->{auth}{username}; You get this: my $serializer = config->serializer; my $username = config->auth->username; This helps to prevent typos. If you mistype a configuration name: my $pass = config->auth->pass; An exception will be thrown, tell you it can't find the method name, but listing available methods: Can't locate config attribute "pass". Available attributes: password, username If the hash key cannot be converted into a proper method name, you can still access it via a hash reference: my $some_value = config->{'99_bottles'}; And call methods on it, if possible: my $sadness = config->{'99_more_bottles'}->last_bottle; Hash keys pointing to hash references will in turn have those "objectified". Arrays will still be returned as array references. However, hashrefs inside of the array refs may still have their keys allowed as methods: my $some_value = config->some_list->[1]->host; METHOD NAME DEFINITION
We use the following regular expression to determine if a hash key qualifies as a method: /^[[:alpha:]_][[:word:]]*$/; Note that this means "naA~Xve" (note the dots over the i) can be a method name, but unless you "use utf8;" to declare that your source code is UTF-8, you may have disappointing results calling "config->naA~Xve". Further, depending on your version of Perl and the software to read your config file ... well, you get the idea. We recommend sticking with ASCII identifiers if you wish your code to be portable. Patches/suggestions welcome. AUTHOR
This module has been written by Alexis Sukrieh <sukria@cpan.org> and others, see the AUTHORS file that comes with this distribution for details. LICENSE
This module is free software and is released under the same terms as Perl itself. SEE ALSO
Dancer and Dancer::Config. perl v5.14.2 2012-03-31 Dancer::Config::Object(3pm)
All times are GMT -4. The time now is 10:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy