Sponsored Content
Top Forums Shell Programming and Scripting Parse Multi-Section Configuration File Post 302399350 by Scott on Saturday 27th of February 2010 11:35:13 AM
Old 02-27-2010
Which shell are you using - and how are you running the script?

i.e.
Code:
./my_script

or
Code:
sh ./my_script

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

multi-file multi-edit

Good day! I am trying to learn how to use the "sed" editor, to perform multiple edits on multiple files in multiple directories. I have one script that tries to call up each file and process it according to the edits listed in a second script. I am using a small input text to test these, at... (12 Replies)
Discussion started by: kielitaide
12 Replies

2. Shell Programming and Scripting

Search and extract by section from configuration

Hi, I understand either AWK or SED can do this, but I not sure how to extract the following configuration in section. Meaning when I need to find code with " ip helper-address 192.168.11.2" , it would start from "interface Serial0/0" and "interface FastEthernet0/1". Only displaying both section... (2 Replies)
Discussion started by: haphazard
2 Replies

3. Shell Programming and Scripting

Extract section of file based on word in section

I have a list of Servers in no particular order as follows: virtualMachines="IIBSBS IIBVICDMS01 IIBVICMA01"And I am generating some output from a pre-existing script that gives me the following (this is a sample output selection). 9/17/2010 8:00:05 PM: Normal backup using VDRBACKUPS... (2 Replies)
Discussion started by: jelloir
2 Replies

4. Shell Programming and Scripting

Parse configuration file & add line in particular section

Greetings, I recently built a replicated DRBD, Heartbeat, & iSCSI Target Initiator storage server on Ubuntu 10.04 to offer shared storage to server Vmware ESX and Microsoft Clusters. Everything works flawlessly, however I wanted to make a script to create, remove, grow volumes to offer ESX... (6 Replies)
Discussion started by: Aeudian
6 Replies

5. Shell Programming and Scripting

SH script to parse string and return multi-line file

Hello all, I have been asked to exercise my shell scripting and it has been 10 plus years since I used to do it so I can not remember hardly anything and ask for your help. What I need to do is copy a line out of a file that can be 10 to 100 characters long, I then need to parse this line into... (3 Replies)
Discussion started by: Alivadoro
3 Replies

6. Shell Programming and Scripting

Delete a section of a file if...

i have a file as below that has n section : 2006 0101 1236 49.3 L 37.902 48.482 0.0 Teh 5 0.2 2.7LTeh 1 GAP=238 E Iranian Seismological Center, Institute of Geophysics, University of Tehran 6 ... (5 Replies)
Discussion started by: oreka18
5 Replies

7. Shell Programming and Scripting

Multi-line filtering based on multi-line pattern in a file

I have a file with data records separated by multiple equals signs, as below. ========== RECORD 1 ========== RECORD 2 DATA LINE ========== RECORD 3 ========== RECORD 4 DATA LINE ========== RECORD 5 DATA LINE ========== I need to filter out all data from this file where the... (2 Replies)
Discussion started by: Finja
2 Replies

8. Shell Programming and Scripting

How to substract selective values in multi row, multi column file (using awk or sed?)

Hi, I have a problem where I need to make this input: nameRow1a,text1a,text2a,floatValue1a,FloatValue2a,...,floatValue140a nameRow1b,text1b,text2b,floatValue1b,FloatValue2b,...,floatValue140b look like this output: nameRow1a,text1b,text2a,(floatValue1a - floatValue1b),(floatValue2a -... (4 Replies)
Discussion started by: nricardo
4 Replies

9. Shell Programming and Scripting

Xml multi parse question

awk -F "" '/<Id>|<id>|<Source>|<source>|<Accession>|<accession>|<TestName>|<testname>/ {print $2, $3}' OFS='\t' Test.xml The above code works great, but lets say I wanted the <Analyte> name (<Name>STAT3). The word <name> is unique so there will be multiple records pulled. Is there a way to... (8 Replies)
Discussion started by: cmccabe
8 Replies

10. Shell Programming and Scripting

awk to parse section of csv into array

In the awk below I am trying to parse the Sample Name below the section. The values that are extracted are read into array s(each value in a row seperated by a space) which will be used later in a bash script. The awk does execute but no values are printed. I am also not sure how to print in a row... (1 Reply)
Discussion started by: cmccabe
1 Replies
Proc::Daemon(3pm)					User Contributed Perl Documentation					 Proc::Daemon(3pm)

NAME
Proc::Daemon - Run Perl program(s) as a daemon process. SYNOPSIS
use Proc::Daemon; $daemon = Proc::Daemon->new( work_dir => '/my/daemon/directory', ..... ); $Kid_1_PID = $daemon->Init; unless ( $Kid_1_PID ) { # code executed only by the child ... } $Kid_2_PID = $daemon->Init( { work_dir => '/other/daemon/directory', exec_command => 'perl /home/my_script.pl', } ); $pid = $daemon->Status( ... ); $stopped = $daemon->Kill_Daemon( ... ); DESCRIPTION
This module can be used by a Perl program to initialize itself as a daemon or to execute ("exec") a system command as daemon. You can also check the status of the daemon (alive or dead) and you can kill the daemon. A daemon is a process that runs in the background with no controlling terminal. Generally servers (like FTP, HTTP and SIP servers) run as daemon processes. Do not make the mistake to think that a daemon is a server. ;-) Proc::Daemon does the following: 1. The script forks a child. 2. The child changes the current working directory to the value of 'work_dir'. 3. The child clears the file creation mask. 4. The child becomes a session leader, which detaches the program from the controlling terminal. 5. The child forks another child (the final daemon process). This prevents the potential of acquiring a controlling terminal at all and detaches the daemon completely from the first parent. 6. The second child closes all open file descriptors (unless you define "dont_close_fh" and/or "dont_close_fd"). 7. The second child opens STDIN, STDOUT and STDERR to the location defined in the constructor ("new"). 8. The second child returns to the calling script, or the program defined in 'exec_command' is executed and the second child never returns. 9. The first child transfers the PID of the second child (daemon) to the parent. Additionally the PID of the daemon process can be written into a file if 'pid_file' is defined. Then the first child exits. 10. If the parent script is looking for a return value, then the PID(s) of the child/ren will be returned. Otherwise the parent will exit. NOTE: Because of the second fork the daemon will not be a session-leader and therefore Signals will not be send to other members of his process group. If you need the functionality of a session-leader you may want to call POSIX::setsid() manually at your daemon. INFO: Since "fork" is not performed the same way on Windows systems as on Linux, this module does not work with Windows. Patches appreciated! CONSTRUCTOR
new ( %ARGS ) The constructor creates a new Proc::Daemon object based on the hash %ARGS. The following keys from %ARGS are used: work_dir Defines the path to the working directory of your daemon. Defaults to "/". setuid Sets the real user identifier ($<) and the effective user identifier ($>) for the daemon process using "POSIX::setuid( ... )", in case you want to run your daemon under a different user from the parent. Obviously the first user must have the rights to switch to the new user otherwise it will stay the same. It is helpful to define the argument "setuid" if you start your script at boot time by init with the superuser, but wants the daemon to run under a normal user account. child_STDIN Defines the path to STDIN for your daemon. Defaults to "/dev/null". Default Mode is '<' (read). You can define other Mode the same way as you do using Perls "open" in a two-argument form. child_STDOUT Defines the path where the output of your daemon will go. Defaults to "/dev/null". Default Mode is '+>' (write/read). You can define other Mode the same way as you do using Perls "open" in a two-argument form. child_STDERR Defines the path where the error output of your daemon will go. Defaults to "/dev/null". Default Mode is '+>' (write/read). You can define other Mode the same way as you do using Perls "open" in a two-argument form, see example below. dont_close_fh If you define it, it must be an arrayref with file handles you want to preserve from the parent into the child (daemon). This may be the case if you have code below a "__DATA__" token in your script or module called by "use" or "require". dont_close_fh => [ 'main::DATA', 'PackageName::DATA', $my_filehandle, ... ], You can add any kind of file handle to the array (expression in single quotes or a scalar variable), including 'STDIN', 'STDOUT' and 'STDERR'. Logically the path settings from above ("child_STDIN", ...) will be ignored in this case. DISCLAIMER: Using this argument may not detach your daemon fully from the parent! Use it at your own risk. dont_close_fd Same function and disclaimer as "dont_close_fh", but instead of file handles you write the numeric file descriptors inside the arrayref. pid_file Defines the path to a file (owned by the parent user) where the PID of the daemon process will be stored. Defaults to "undef" (= write no file). exec_command Scalar or arrayref with system command(s) that will be executed by the daemon via Perls "exec PROGRAM_LIST". In this case the child will never return to the parents process! Example: my $daemon = Proc::Daemon->new( work_dir => '/working/daemon/directory', child_STDOUT => '/path/to/daemon/output.file', child_STDERR => '+>>debug.txt', pid_file => 'pid.txt', exec_command => 'perl /home/my_script.pl', # or: # exec_command => [ 'perl /home/my_script.pl', 'perl /home/my_other_script.pl' ], ); In this example: o the PID of the daemon will be returned to $daemon in the parent process and a pid-file will be created at "/working/daemon/directory/pid.txt". o STDOUT will be open with Mode '+>' (write/read) to "/path/to/daemon/output.file" and STDERR will be open to "/working/daemon/directory/debug.txt" with Mode '+>>' (write/read opened for appending). o the script "/home/my_script.pl" will be executed by "perl" and run as daemon. Therefore the child process will never return to this parent script. METHODS
Init( [ { %ARGS } ] ) Become a daemon. If used for the first time after "new", you call "Init" with the object reference to start the daemon. $pid = $daemon->Init(); If you want to use the object reference created by "new" for other daemons, you write "Init( { %ARGS } )". %ARGS are the same as described in "new". Notice that you shouldn't call "Init()" without argument in this case, or the next daemon will execute and/or write in the same files as the first daemon. To prevent this use at least an empty anonymous hash here. $pid = $daemon->Init( {} ); @pid = $daemon->Init( { work_dir => '/other/daemon/directory', exec_command => [ 'perl /home/my_second_script.pl', 'perl /home/my_third_script.pl' ], } ); If you don't need the Proc::Daemon object reference in your script, you can also use the method without object reference: $pid = Proc::Daemon::Init(); # or $pid = Proc::Daemon::Init( { %ARGS } ); "Init" returns the PID (scalar) of the daemon to the parent, or the PIDs (array) of the daemons created if "exec_command" has more then one program to execute. See examples above. "Init" returns 0 to the child (daemon). If you call the "Init" method in the context without looking for a return value (void context) the parent process will "exit" here like in earlier versions: Proc::Daemon::Init(); Status( [ $ARG ] ) This function checks the status of the process (daemon). Returns the PID number (alive) or 0 (dead). $ARG can be a string with: o "undef", in this case it tries to get the PID to check out of the object reference settings. o a PID number to check. o the path to a file containing the PID to check. o the command line entry of the running program to check. This requires Proc::ProcessTable to be installed. Kill_Daemon( [ $ARG [, SIGNAL] ] ) This function kills the Daemon process. Returns the number of processes successfully killed (which mostly is not the same as the PID number), or 0 if the process wasn't found. $ARG is the same as of "Status()". SIGNAL is an optional signal name or number as required by Perls "kill" function and listed out by "kill -l" on your system. Default value is 9 ('KILL' = non-catchable, non-ignorable kill). Fork Is like the Perl built-in "fork", but it retries to fork over 30 seconds if necessary and if possible to fork at all. It returns the child PID to the parent process and 0 to the child process. If the fork is unsuccessful it "warn"s and returns "undef". OTHER METHODS
Proc::Daemon also defines some other functions. See source code for more details: OpenMax( [ $NUMBER ] ) Returns the maximum file descriptor number. If undetermined $NUMBER will be returned. adjust_settings Does some fixes/adjustments on the "new" settings together with "fix_filename". fix_filename( $KEYNAME ) Prevents double use of same filename in different processes. get_pid( [ $STRING ] ) Returns the wanted PID if it can be found. get_pid_by_proc_table_attr( $ATTR, $MATCH ) Returns the wanted PID by looking into the process table, or "undef". Requires the "Proc::ProcessTable" module to be installed. NOTES
"Proc::Daemon::init" is still available for backwards capability. AUTHORS
Primary-maintainer and code writer until version 0.03: o Earl Hood, earl@earlhood.com, http://www.earlhood.com/ Co-maintainer and code writer since version 0.04: o Detlef Pilzecker, http://search.cpan.org/~deti/, http://www.secure-sip-server.net/ CREDITS
Initial implementation of "Proc::Daemon" derived from the following sources: o "Advanced Programming in the UNIX Environment" by W. Richard Stevens. Addison-Wesley, Copyright 1992. o "UNIX Network Programming", Vol 1, by W. Richard Stevens. Prentice-Hall PTR, Copyright 1998. PREREQUISITES
This module requires the "POSIX" module to be installed. The "Proc::ProcessTable" module is not essentially required but it can be useful if it is installed (see above). SEE ALSO
perl(1), POSIX, Proc::ProcessTable COPYRIGHT
This module is Copyright (C) 1997-2011 by Earl Hood and Detlef Pilzecker. All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself. perl v5.12.3 2011-06-04 Proc::Daemon(3pm)
All times are GMT -4. The time now is 02:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy