Sponsored Content
Top Forums Shell Programming and Scripting Parse configuration file & add line in particular section Post 302505874 by mirni on Thursday 17th of March 2011 10:00:38 PM
Old 03-17-2011
How about this?
Code:
#!/bin/bash

servername=Microsoft.Storage.1 #to find appropriate paragraph

nums=( $( awk '
/'"$servername"'/,/^\s*$/  { #process only between $servername and empty line
  if(/Lun/){numLun=$2; numRec=FNR} #if found line with 'Lun', capture 2nd field and line number
}
END{
print numLun" "numRec
} ' ietd.conf ) ) 
#nums is an array; first element is the field right after 'Lun'
#and second element is its line number 

newEntry="Lun $((${nums[0]}+1)) and whatever else you enter" #what should be inserted

sed "${nums[1]} a \\\t$newEntry" ietd.conf   #'a' command (append) to the appropriate line


Last edited by mirni; 03-17-2011 at 11:02 PM.. Reason: inserting comments
This User Gave Thanks to mirni For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

help find a section line of a file

hi, I have a 20 line file. I need a command which will brinf back a specific line based upon the line number I enter. e.g. the file looks like this and is called file1 jim is a man john is a woman james is a man wendy is a woman lesley is a woman i want a command that will... (4 Replies)
Discussion started by: sureshy
4 Replies

2. Shell Programming and Scripting

sed & awk--get section of file based 2 params

I need to get a section of a file based on 2 params. I want the part of the file between param 1 & 2. I have tried a bunch of ways and just can't seem to get it right. Can someone please help me out.....its much appreciated. Here is what I have found that looks like what I want....but doesn't... (12 Replies)
Discussion started by: Andy Cook
12 Replies

3. Shell Programming and Scripting

SED help (remove line::parse again::add line)

Aloha! I have just over 1k of users that have permissions that they shouldn't under our system. I need to parse a provided list of usernames, check their permissions file, and strip the permissions that they are not allowed to have. If upon the permissions strip they are left with no permissions,... (6 Replies)
Discussion started by: Malumake
6 Replies

4. 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

5. Shell Programming and Scripting

Parse Multi-Section Configuration File

Hello all, Sample configuration file: username = root password = admin IpAddress = 192.168.2.90 HttpCommand = /getfile?hello.jpg Username = root2 Password = admin2 Passive = no Host = 192.168.1.100 Path = /uploads Username = root3 Password = adming Passive = no Host =... (10 Replies)
Discussion started by: LAVco
10 Replies

6. UNIX for Dummies Questions & Answers

Line & File Manipulation - add spaces between characters

Is there an awk, sed, vi or any line command that adds Field Separators (default spaces) to each line in a file? $cat RegionalData 12FC2525MZLP8266900216 12FC2525MZLP8266900216 12FC2525NBLP8276900216 12FC2525NBLP8276900216 Desired results: 1 2 F C 2525 MZ LP 826 690 02 16 1 2 F C... (2 Replies)
Discussion started by: MS75001
2 Replies

7. Shell Programming and Scripting

Prepend first line of section to each line until the next section header

I have searched in a variety of ways in a variety of places but have come up empty. I would like to prepend a portion of a section header to each following line until the next section header. I have been using sed for most things up until now but I'd go for a solution in just about anything--... (7 Replies)
Discussion started by: pagrus
7 Replies

8. Shell Programming and Scripting

Grep or print each section of a file on one line with a separator

I can obtain information from itdt inventory command however it display as below, I'd like to print each entity on one line but seperated by : the file is something like and each section ends with Volume Tag Drive Address 256 Drive State ................... Normal ASC/ASCQ... (3 Replies)
Discussion started by: gefa
3 Replies

9. 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

10. Shell Programming and Scripting

How to change file section into each line?

Hi Gurus, I have below file which has different sections, need to move the sections to beginning of the each record. original file aaa bbb ccc ddd eee fff output file. aaa bbb ccc ddd eee fff (6 Replies)
Discussion started by: green_k
6 Replies
iSCSI Target Daemon(8)						   User Manuals 					    iSCSI Target Daemon(8)

NAME
ietd - iSCSI Enterprise Target Daemon SYNOPSIS
ietd [-c configfile] [-d debuglevel] [-f] [-g GID] [-h] [-a address] [-p port] [-u UID] DESCRIPTION
The ietd program implements the user level part of iSCSI Enterprise Target software for building an iSCSI storage system on Linux. OPTIONS
-c filename, --config=filename Specify configuration file, default is /etc/ietd.conf -d debuglevel, --debug=debuglevel Turns on debugging. Logging goes to /var/log/syslog via syslog(1). -f, --foreground Act as a normal application which uses a console. -g GID, --gid=GID Specify running group id, default is current gid. -a address, --address=address Specify on which local address the server should listen, default is any. -p port, --port=port Specify on which port the server should listen, default is 3260. -h, --help Display help message on command line options. -u UID, --uid=UID Specify running user id, default is current uid. FILES
/etc/ietd.conf The system wide configuration file. See ietd.conf(5) for further details. DIAGNOSTICS
This may be logged to stderr: Warnings "Dropping key (%s=%s)" Value(s): key, value "unable to set fd flags (%s)!" Value(s): strerror(errno) "unable to get fd flags (%s)!" Value(s): strerror(errno) "unable to set SO_REUSEADDR on server socket (%s)!" Value(s): strerror(errno) "iscsi_ctrl: failed to scan '%s'" Value(s): p "target %u not found?" Value(s): target_id "session %#Lx not found?" Value(s): session_id "session_remove: session %#Lx not found?" Value(s): session->sid.id64 "need to shutdown target %s" Value(s): target->name Errors "unable to create server socket (%s)!" Value(s): strerror(errno) "unable to bind server socket (%s)!" Value(s): strerror(errno) "unable to listen to server socket (%s)!" Value(s): strerror(errno) "error reading /proc/iscsi/iscsi (%d)" Value(s): errno "unable to create pid file" "starting daemon failed" "unable to lock pid file" "unable to open %s! (%s)" Value(s): PROC_DEVICEDIR, strerror(errno) "unable to open %s! (%s)" Value(s): PROC_TARGETDIR, strerror(errno) Debug Messages Level 0 "unknown user %s" Value(s): value "login by %s failed" Value(s): user->name "succesfull login by %s" Value(s): user->name "connection request from %s" Value(s): inet_ntoa(name.sin_addr) "connection closed" "lun %u:%u already configured" Value(s): target->id, tlun->lun Debug Messages Level 1 "conn_take_fd: %u %u %u %Lx %d" Value(s): conn->cid, conn->stat_sn, conn->exp_stat_sn, conn->sid.id64, fd "exp_cmd_sn: %d,%d" Value(s): conn->exp_cmd_sn, req->cmd_sn "Login request (security negotiation): %d" Value(s): conn->state "Login request (operational negotiation): %d" Value(s): conn->state "Text request: %d" Value(s): conn->state "close conn %u session %Lx target %u" Value(s): conn_id, session_id, target_id "session_find_name: %s,%#Lx" Value(s): iname, sid.id64 "session_find_id: %#Lx" Value(s): sid "session_create: %#Lx" Value(s): session->sid.id64 "session_close: %#Lx" Value(s): session->sid.id64 "session_remove: %#Lx" Value(s): session->sid.id64 "active target %d: %s" Value(s): id, name "removing target %d" Value(s): id "creaing target %u: %s" Value(s): target_next_id, p "attaching %u to %u:%u" Value(s): tlun->device->id, target->id, tlun->lun "target_find_name: %s" Value(s): name "target_find_id: %u" Value(s): id "target_remove: %u,%s" Value(s): target->id, target->name Debug Messages Level 2 "%s %.16s" Value(s): line, buf "BHS: (%p)" Value(s): buf "AHS: (%p)" Value(s): buf "Data: (%p)" Value(s): buf KNOWN ISSUES
Task attributes is incomplete (all tasks are treated as if they have the SIMPLE attribute.) SCSI task management is incomplete. NOP-In is incomplete. The target never sends a NOP-In of its own accord. Header and Data Digest in a discovery session are not implemented. Out-of-memory situation leads to the system crash (There are still some out-of-memory bugs.) SEE ALSO
ietd.conf(5) Linux July 2004 iSCSI Target Daemon(8)
All times are GMT -4. The time now is 07:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy