Sponsored Content
Full Discussion: Config file auto-updation
Top Forums Shell Programming and Scripting Config file auto-updation Post 302787311 by hanson44 on Friday 29th of March 2013 07:10:15 AM
Old 03-29-2013
Code:
$ cat myfile.cfg
var=1
var1=1
run=1

$ cat update.sh
num=`grep run= myfile.cfg | sed "s/run=//"`
num=`expr $num + 1`
sed "s/run=.*/run=$num/" myfile.cfg > temp.x
mv temp.x myfile.cfg

$ ./update.sh

$ cat myfile.cfg
var=1
var1=1
run=2

 

9 More Discussions You Might Find Interesting

1. Programming

Directory updation Notification?

Hi, I'm a UNIX newbie .. so forgive me if this question sounds dumb. :) Is it possible for Unix to notify a process that a particular directory has been updated? Rather that the process constantly polling the directory ... Awaiting your replies .. Thanks, VJ (6 Replies)
Discussion started by: vjsony
6 Replies

2. Linux

gcc updation on Linux machine

Hi All, I already have gcc complier installed in my machine. Its version is : gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5) I am not sure whethere it's is latest gcc version available. I want to update my gcc version. Can anyone please suggest me what is the latest and stable gcc... (1 Reply)
Discussion started by: bisla.yogender
1 Replies

3. Shell Programming and Scripting

parsing config file to create new config files

Hi, I want to use a config file as the base file and parse over the values of country and city parameters in the config file and generate separate config files as explained below. I will be using the config file as mentioned below: (config.txt) country:a,b city:1,2 type:b1... (1 Reply)
Discussion started by: clazzic
1 Replies

4. AIX

Problem with updation of 'quota'

Hi, We have recently implemented 'quota' concept for the unix users. softlimit - 230MB hardlimit - 250MB We have applied the quota when few of users are more than the hardlimit,issue is that even though the users cleared the space, still its 'quota' was not updating properly. For some... (0 Replies)
Discussion started by: girish_satyam
0 Replies

5. Shell Programming and Scripting

to check files updation in sys time

Dear All, Pls help me on this issue. i want to write a script to check whether files updation happening in cuttent time or not. i have set of files in directory which wil update in time basis.. Requirement: If the files are updating in system time i just want to print "files are... (6 Replies)
Discussion started by: steve2216
6 Replies

6. Shell Programming and Scripting

check files updation

Hi All, Can anyone help to write the script to check files updation? i have files as mentioned below. which will be updated some time. i just want to check the last file is updating the data for last 15 mins or not. if its not updating i want to print NOT OK. if its updating data i want... (1 Reply)
Discussion started by: steve2216
1 Replies

7. Shell Programming and Scripting

Shell script that will compare two config files and produce 2 outputs 1)actual config file 2)report

Hi I am new to shell scripting. There is a requirement to write a shell script to meet follwing needs.Prompt reply shall be highly appreciated. script that will compare two config files and produce 2 outputs - actual config file and a report indicating changes made. OS :Susi linux ver 10.3. ... (4 Replies)
Discussion started by: muraliinfy04
4 Replies

8. UNIX for Dummies Questions & Answers

Check for updation/error/stuck of logs

Hi All, I'm a newbie in Linux Programming.:) Got some 500 processes running and I have around 20-30 logs updating for every 2mins on a server. The logs which i'm referring usually contains book name,run ids(not PID's),process name etc etc. I'm interested in finding out whether some particular... (1 Reply)
Discussion started by: Nand Kishor
1 Replies

9. UNIX for Dummies Questions & Answers

File updation on matching key

I have input file like Input.dat with below content RRD 0Z91YUn000000Lk 9000100001 103020151117 STMT151117155527001 0000 2 000000 000004 RRD 0Z91YUn00000ysj 9000100001 103020151117 STMT151117155527001 0000 3 000000 000003 RRD 0Z91YUn00001vGh 9000100002... (12 Replies)
Discussion started by: PRAMOD 96
12 Replies
OP_SERVER(8)						User Contributed Perl Documentation					      OP_SERVER(8)

NAME
op_server.pl - Proxy server for the Asterisk Flash Operator Panel SYNOPSIS
op_server.pl [options] Options: -?, --help -p, --pidfile -c, --confdir -l, --logdir -d, --daemon -v, --version -X, --debuglevel OPTIONS
--help Print a brief help message and exits --pidfile Specify the pid file to use when running in daemon mode. Defaults to /var/run/op_panel.pid --confdir Specify where to look for the configuration files. If omited, it will look for them in the same directory where op_server.pl resides --logdir If specified, will write the log files to that directory. If not, it will output to STDOUT and STDERR --daemon Run the server in daemon mode, detaching itself from the console --version Display the version and exits --debuglevel Sets the debug level for the logs. It overrides the value inside op_server.cfg DESCRIPTION
This program is a proxy server for the Flash Operator Panel. It reads configuration files and updates the data to display on the panel. FILES
/etc/op-panel The configuration files of the operator panel daemon reside in that directory (may differ on other distributions). Those include: op_server.cfg The server's configuration file. See remarks in file for documentation. op_buttons.cfg Defines the layout of the operator panel, and also which phones to track. /var/log/op-panel/output.log The standard output of the daemon, including debugging prints and dumps. /var/log/op-panel/error.log The standard error of the daemon. Should normally be empty. perl v5.10.1 2009-06-22 OP_SERVER(8)
All times are GMT -4. The time now is 12:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy