Sponsored Content
Full Discussion: Question on grep
Top Forums UNIX for Dummies Questions & Answers Question on grep Post 302750741 by luft on Wednesday 2nd of January 2013 11:38:10 AM
Old 01-02-2013
I'm looking for the string "scott" inside the files srvr*.log that got created on Nov 15.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

grep question

what is the format for grep if I want to search from the current directory and through all its subdirectories?:) (3 Replies)
Discussion started by: pkappaz
3 Replies

2. UNIX for Dummies Questions & Answers

question about grep

I want to search for a word from the root directory using grep command. I am searching for a word called batch in cd /vol directory.The vol directory has so many sub-directories and I want to see all the files having the name as batch. This what I tried .. /vol/ % grep -i *batch* But it is... (4 Replies)
Discussion started by: ANAMIKA56
4 Replies

3. UNIX for Dummies Questions & Answers

Grep Question

Hello Everybody, I have files; yyyymmdd.log which the data look like this; "Txid=9426043&MsgTxt=Thankyou&UserId=john&Password=jh2501" "Txid=9426150&MsgTxt=Thankyou&UserId=john&Password=jh2501" . . . "Txid=9426200&MsgTxt=Thankyou&UserId=john&Password=jh2501" Question 1: How to... (3 Replies)
Discussion started by: nazri76
3 Replies

4. Shell Programming and Scripting

grep question

hello people, All my servers have 4 mounts with this norme. For example, if my hostname is siroe. df -h | grep `hostname` /dev/dsk/c1t3d0s6 404G 399G 800M 100% /siroe3 /dev/dsk/c1t2d0s6 404G 399G 800M 100% /siroe2 /dev/md/dsk/d6 20G 812M 19G ... (3 Replies)
Discussion started by: melanie_pfefer
3 Replies

5. UNIX for Dummies Questions & Answers

grep question

Instead of using the following command #dmesg | grep -v sendmail | grep -v xntpd How can I use just one grep -v and give both arguments. Please suggest thanks (4 Replies)
Discussion started by: Tirmazi
4 Replies

6. Shell Programming and Scripting

grep question

Hello, Is there a way in grep to remember patterns? For eg: int a,b,c,d,a; If a variable is declared twice, like in the previous example, I should be able to print only those lines. Is there a way to print only the lines where the variable name occurs more than once, using grep... (1 Reply)
Discussion started by: prasanna1157
1 Replies

7. Shell Programming and Scripting

grep question please

i have files with "DOMAINSOLVER ACMS" with any number of spaces in between the two words on its own line and i can find it with the following: grep -c "DOMAINSOLVER* ACMS" $FILENAMEbut i need to exclude any lines matching: "$DOMAINSOLVER". i've tried a variety of quoting and escaping with no luck.... (4 Replies)
Discussion started by: crimso
4 Replies

8. Shell Programming and Scripting

Question about grep

can anyone tell me what the \/$ means? from grep \/$ (8 Replies)
Discussion started by: Nick1097
8 Replies

9. Shell Programming and Scripting

Question about grep

is there anyway i can ask grep to only get the first line? as in the top command line line 1 <-- just grep this line line 2 line 3 ---------- Post updated at 04:24 PM ---------- Previous update was at 04:19 PM ---------- nvm.. found out that i can do it with |head (12 Replies)
Discussion started by: Nick1097
12 Replies

10. UNIX for Dummies Questions & Answers

Grep Question

My grep returns a row of data like this: 75=20130130;60=074338;61=985;511=55473883;452=115439;62=196;267=1; Is there a way for the grep to only return 60="something" and 511="something" ? Thanks in advance. (10 Replies)
Discussion started by: Carl2013
10 Replies
Glib::KeyFile(3pm)					User Contributed Perl Documentation					Glib::KeyFile(3pm)

NAME
Glib::KeyFile - Parser for .ini-like files SYNOPSIS
use Glib; $data .= $_ while (<DATA>); $f = Glib::KeyFile->new; $f->load_from_data($data); if ($f->has_group('Main') && $f->has_key('Main', 'someotherkey')) { $val = $f->get_integer('Main', 'someotherkey'); print $val . " "; } 0; __DATA__ # a comment [MainSection] somekey=somevalue someotherkey=42 someboolkey=true listkey=1;1;2;3;5;8;13;21 localekey=Good Morning localekey[it]=Buon giorno localekey[es]=Buenas dias localekey[fr]=Bonjour DESCRIPTION
Glib::KeyFile lets you parse, edit or create files containing groups of key-value pairs, which we call key files for lack of a better name. Several freedesktop.org specifications use key files now, e.g the Desktop Entry Specification and the Icon Theme Specification. The syntax of key files is described in detail in the Desktop Entry Specification, here is a quick summary: Key files consists of groups of key-value pairs, interspersed with comments. METHODS
keyfile = Glib::KeyFile->new boolean = $key_file->get_boolean ($group_name, $key) o $group_name (string) o $key (string) Retrieves a boolean value from $key inside $group_name. May croak with a Glib::Error in $@ on failure. list = $key_file->get_boolean_list ($group_name, $key) o $group_name (string) o $key (string) Retrieves a list of booleans from $key inside $group_name. May croak with a Glib::Error in $@ on failure. $key_file->set_boolean_list ($group_name, $key, ...) o $group_name (string) o $key (string) o ... (list) list of booleans Sets a list of booleans in $key inside $group_name. If $key cannot be found then it is created. If $group_name cannot be found then it is created. $key_file->set_boolean ($group_name, $key, $value) o $group_name (string) o $key (string) o $value (boolean) Sets a boolean value to $key inside $group_name. If $key is not found, it is created. string = $key_file->get_comment ($group_name=undef, $key=undef) o $group_name (string or undef) o $key (string or undef) Retreives a comment above $key from $group_name. If $key is undef then $comment will be read from above $group_name. If both $key and $group_name are undef, then $comment will be read from above the first group in the file. May croak with a Glib::Error in $@ on failure. $key_file->set_comment ($group_name, $key, $comment) o $group_name (string or undef) o $key (string or undef) o $comment (string) Places a comment above $key from $group_name. If $key is undef then $comment will be written above $group_name. If both $key and $group_name are undef, then $comment will be written above the first group in the file. May croak with a Glib::Error in $@ on failure. double = $key_file->get_double ($group_name, $key) o $group_name (string) o $key (string) Retrieves a double value from $key inside $group_name. May croak with a Glib::Error in $@ on failure. Since: glib 2.12 list = $key_file->get_double_list ($group_name, $key) o $group_name (string) o $key (string) Retrieves a list of doubles from $key inside $group_name. May croak with a Glib::Error in $@ on failure. Since: glib 2.12 $key_file->set_double_list ($group_name, $key, ...) o $group_name (string) o $key (string) o ... (list) list of doubles Sets a list of doubles in $key inside $group_name. If $key cannot be found then it is created. If $group_name cannot be found then it is created. Since: glib 2.12 $key_file->set_double ($group_name, $key, $value) o $group_name (string) o $key (string) o $value (double) Sets a double value to $key inside $group_name. If $key is not found, it is created. Since: glib 2.12 list = $key_file->get_groups Returns the list of groups inside the key_file. boolean = $key_file->has_group ($group_name) o $group_name (string) Checks whether $group_name is present in $key_file. boolean = $key_file->has_key ($group_name, $key) o $group_name (string) o $key (string) Checks whether $group_name has $key in it. May croak with a Glib::Error in $@ on failure. integer = $key_file->get_integer ($group_name, $key) o $group_name (string) o $key (string) Retrieves an integer value from $key inside $group_name. May croak with a Glib::Error in $@ on failure. list = $key_file->get_integer_list ($group_name, $key) o $group_name (string) o $key (string) Retrieves a list of integers from $key inside $group_name. May croak with a Glib::Error in $@ on failure. $key_file->set_integer_list ($group_name, $key, ...) o $group_name (string) o $key (string) o ... (list) list of integers Sets a list of doubles in $key inside $group_name. If $key cannot be found then it is created. If $group_name cannot be found then it is created. $key_file->set_integer ($group_name, $key, $value) o $group_name (string) o $key (string) o $value (integer) Sets an integer value to $key inside $group_name. If $key is not found, it is created. list = $key_file->get_keys ($group_name) o $group_name (string) Returns the list of keys inside a group of the key file. May croak with a Glib::Error in $@ on failure. $key_file->set_list_separator ($separator) o $separator (string) Sets the list separator character. boolean = $key_file->load_from_data ($buf, $flags) o $buf (scalar) o $flags (Glib::KeyFileFlags) Parses a string containing a key file structure. May croak with a Glib::Error in $@ on failure. boolean = $key_file->load_from_data_dirs ($file, $flags) (boolean, scalar) = $key_file->load_from_data_dirs ($file, $flags) o $file (string) o $flags (Glib::KeyFileFlags) Parses a key file, searching for it inside the data directories. In scalar context, it returns a boolean value (true on success, false otherwise); in array context, it returns a boolean value and the full path of the file. May croak with a Glib::Error in $@ on failure. boolean = $key_file->load_from_dirs ($file, $flags, @search_dirs) (boolean, scalar) = $key_file->load_from_dirs ($file, $flags, @search_dirs) o $file (string) o $flags (Glib::KeyFileFlags) o ... (list) Parses a key file, searching for it inside the specified directories. In scalar context, it returns a boolean value (true on success, false otherwise); in array context, it returns a boolean value and the full path of the file. May croak with a Glib::Error in $@ on failure. Since: glib 2.14 boolean = $key_file->load_from_file ($file, $flags) o $file (string) o $flags (Glib::KeyFileFlags) Parses a key file. May croak with a Glib::Error in $@ on failure. string = $key_file->get_locale_string ($group_name, $key, $locale=undef) o $group_name (string) o $key (string) o $locale (string or undef) Returns the value associated with $key under $group_name translated in the given $locale if available. If $locale is undef then the current locale is assumed. May croak with a Glib::Error in $@ on failure. list = $key_file->get_locale_string_list ($group_name, $key, $locale) o $group_name (string) o $key (string) o $locale (string) May croak with a Glib::Error in $@ on failure. $key_file->set_locale_string_list ($group_name, $key, $locale, ...) o $group_name (string) o $key (string) o $locale (string) o ... (list) Associates a list of string values for $key and $locale under $group_name. If the translation for $key cannot be found then it is created. $key_file->set_locale_string ($group_name, $key, $locale, $string) o $group_name (string) o $key (string) o $locale (string) o $string (string) $key_file->remove_comment ($group_name=undef, $key=undef) o $group_name (string or undef) o $key (string or undef) Removes a comment from a group in a key file. If $key is undef, the comment will be removed from above $group_name. If both $key and $group_name are undef, the comment will be removed from the top of the key file. May croak with a Glib::Error in $@ on failure. $key_file->remove_group ($group_name) o $group_name (string) Removes a group from a key file. May croak with a Glib::Error in $@ on failure. $key_file->remove_key ($group_name, $key) o $group_name (string) o $key (string) Removes a key from $group_name. May croak with a Glib::Error in $@ on failure. string = $key_file->get_start_group Returns the first group inside a key file. string = $key_file->get_string ($group_name, $key) o $group_name (string) o $key (string) Retrieves a string value from $key inside $group_name. May croak with a Glib::Error in $@ on failure. list = $key_file->get_string_list ($group_name, $key) o $group_name (string) o $key (string) Retrieves a list of strings from $key inside $group_name. May croak with a Glib::Error in $@ on failure. $key_file->set_string_list ($group_name, $key, ...) o $group_name (string) o $key (string) o ... (list) list of strings Sets a list of strings in $key inside $group_name. The strings will be escaped if contain special characters. If $key cannot be found then it is created. If $group_name cannot be found then it is created. $key_file->set_string ($group_name, $key, $value) o $group_name (string) o $key (string) o $value (string) Sets a string value to $key inside $group_name. The string will be escaped if it contains special characters. If $key is not found, it is created. string = $key_file->to_data Returns the key file as a string. May croak with a Glib::Error in $@ on failure. string = $key_file->get_value ($group_name, $key) o $group_name (string) o $key (string) Retrieves the literal value of $key inside $group_name. May croak with a Glib::Error in $@ on failure. $key_file->set_value ($group_name, $key, $value) o $group_name (string) o $key (string) o $value (string) Sets the literal value of $key inside $group_name. If $key cannot be found, it is created. If $group_name cannot be found, it is created. ENUMS AND FLAGS
flags Glib::KeyFileFlags o 'none' / 'G_KEY_FILE_NONE' o 'keep-comments' / 'G_KEY_FILE_KEEP_COMMENTS' o 'keep-translations' / 'G_KEY_FILE_KEEP_TRANSLATIONS' SEE ALSO
Glib COPYRIGHT
Copyright (C) 2003-2011 by the gtk2-perl team. This software is licensed under the LGPL. See Glib for a full notice. perl v5.14.2 2012-05-24 Glib::KeyFile(3pm)
All times are GMT -4. The time now is 04:21 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy