Sponsored Content
Top Forums UNIX for Beginners Questions & Answers How to comment a specific line of a file in Solaris 10? Post 303042944 by abhaydas on Monday 13th of January 2020 04:00:37 AM
Old 01-13-2020
HI Geek's

Please advise..if anything i am missing
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need to add a comment line in a text file

Hi I need to add a comment line at the begining of a text file. The scenario is given below. 1. The number of servers that needs to be updated is around 80 2. The location of the text file in all the servers are the same including the file name. 3. The comment has to be added at the very... (2 Replies)
Discussion started by: orakhan
2 Replies

2. UNIX for Dummies Questions & Answers

how to replace a text of line with a comment line

I want to replace this line : "test compare visible] true" and make it "#test compare visible] true". How can I do it ? And it should be checked in many sub folder files also. (6 Replies)
Discussion started by: manoj.b
6 Replies

3. Shell Programming and Scripting

Comment a line with SED

I have around 25 hosts and each hosts has 4 instance of jboss and 4 different ip attached to it . I need to make some changes to the startup scripts. Any tips appreciated. I have total of 100 instances which bind to 100 different ip address based on instance name. For example File1 ... (1 Reply)
Discussion started by: gubbu
1 Replies

4. Shell Programming and Scripting

uncomment or comment one specific line in a config file

Hello. I want comment or uncomment a ligne in a config file. The file name : /etc/samba/smb.conf Normaly the ligne is uncomment :so the line begin with a tab character followed by passdb backend =\tpassdb backend = In that case I should comment this line ... (2 Replies)
Discussion started by: jcdole
2 Replies

5. Shell Programming and Scripting

Using awk to read a specific line and a specific field on that line.

Say the input was as follows: Brat 20 x 1000 32rf Pour 15 p 1621 05pr Dart 10 z 1111 22xx My program prompts for an input, what I want is to use the input to locate a specific field. Like if I type in, "Pou" then it would return "Pour" and just "Pour" I currently have this line but it is... (6 Replies)
Discussion started by: Bungkai
6 Replies

6. Shell Programming and Scripting

comment a line of the patterns is a the beginning of the line

I need to comment the lines starting with pattern "exclude" or "exclude=". If the work exclude comes at any other part, ignore it. Also, ignore, excludes, excluded etc. Ie only comment the line starting with exclude. File contents. exclude exclude= hi I am excluded excludes excludes= ... (9 Replies)
Discussion started by: anil510
9 Replies

7. Shell Programming and Scripting

Extract specific line in an html file starting and ending with specific pattern to a text file

Hi This is my first post and I'm just a beginner. So please be nice to me. I have a couple of html files where a pattern beginning with "http://www.site.com" and ending with "/resource.dat" is present on every 241st line. How do I extract this to a new text file? I have tried sed -n 241,241p... (13 Replies)
Discussion started by: dejavo
13 Replies

8. Shell Programming and Scripting

How to comment a specific line of a file?

Hi, I need to comment out (insert # in the front of a line) a line that has entry Defaults requiretty using command-line as I need to do this on hundreds of servers. From Defaults requiretty To #Defaults requiretty I tried something like below but no luck: Please advise,... (3 Replies)
Discussion started by: prvnrk
3 Replies

9. Shell Programming and Scripting

Overwrite specific column in xml file with the specific column from adjacent line

I have an xml file dumped from rrd file, that I want to "patch" so the xml file doesn't contain any blank hole in the resulting graph of the rrd file. Here is the file. <!-- 2015-10-12 14:00:00 WIB / 1444633200 --> <row><v> 4.0419731265e+07 </v><v> 4.5045912770e+06... (2 Replies)
Discussion started by: rk4k
2 Replies

10. Shell Programming and Scripting

Count specific character of a file in each line and delete this character in a specific position

I will appreciate if you help me here in this script in Solaris Enviroment. Scenario: i have 2 files : 1) /tmp/TRANSACTIONS_DAILY_20180730.txt: 201807300000000004 201807300000000005 201807300000000006 201807300000000007 201807300000000008 2)... (10 Replies)
Discussion started by: teokon90
10 Replies
QSignal(3qt)															      QSignal(3qt)

NAME
QSignal - Can be used to send signals for classes that don't inherit QObject SYNOPSIS
#include <qsignal.h> Inherits QObject. Public Members QSignal ( QObject * parent = 0, const char * name = 0 ) ~QSignal () bool connect ( const QObject * receiver, const char * member ) bool disconnect ( const QObject * receiver, const char * member = 0 ) void activate () bool isBlocked () const (obsolete) void block ( bool b ) (obsolete) void setParameter ( int value ) (obsolete) int parameter () const (obsolete) void setValue ( const QVariant & value ) QVariant value () const DESCRIPTION
The QSignal class can be used to send signals for classes that don't inherit QObject. If you want to send signals from a class that does not inherit QObject, you can create an internal QSignal object to emit the signal. You must also provide a function that connects the signal to an outside object slot. This is how we have implemented signals in the QMenuData class, which is not a QObject. In general, we recommend inheriting QObject instead. QObject provides much more functionality. You can set a single QVariant parameter for the signal with setValue(). Note that QObject is a private base class of QSignal, i.e. you cannot call any QObject member functions from a QSignal object. Example: #include <qsignal.h> class MyClass { public: MyClass(); ~MyClass(); void doSomething(); void connect( QObject *receiver, const char *member ); private: QSignal *sig; }; MyClass::MyClass() { sig = new QSignal; } MyClass::~MyClass() { delete sig; } void MyClass::doSomething() { // ... does something sig->activate(); // emits the signal } void MyClass::connect( QObject *receiver, const char *member ) { sig->connect( receiver, member ); } See also Input/Output and Networking and Miscellaneous Classes. MEMBER FUNCTION DOCUMENTATION
QSignal::QSignal ( QObject * parent = 0, const char * name = 0 ) Constructs a signal object called name, with the parent object parent. These arguments are passed directly to QObject. QSignal::~QSignal () Destroys the signal. All connections are removed, as is the case with all QObjects. void QSignal::activate () Emits the signal. If the platform supports QVariant and a parameter has been set with setValue(), this value is passed in the signal. void QSignal::block ( bool b ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. Blocks the signal if b is TRUE, or unblocks the signal if b is FALSE. An activated signal disappears into hyperspace if it is blocked. See also isBlocked(), activate(), and QObject::blockSignals(). bool QSignal::connect ( const QObject * receiver, const char * member ) Connects the signal to member in object receiver. See also disconnect() and QObject::connect(). bool QSignal::disconnect ( const QObject * receiver, const char * member = 0 ) Disonnects the signal from member in object receiver. See also connect() and QObject::disconnect(). bool QSignal::isBlocked () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. Returns TRUE if the signal is blocked, or FALSE if it is not blocked. The signal is not blocked by default. See also block() and QObject::signalsBlocked(). int QSignal::parameter () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. void QSignal::setParameter ( int value ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. void QSignal::setValue ( const QVariant & value ) Sets the signal's parameter to value QVariant QSignal::value () const Returns the signal's parameter SEE ALSO
http://doc.trolltech.com/qsignal.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qsignal.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QSignal(3qt)
All times are GMT -4. The time now is 10:57 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy