Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Find file dont have that string Post 303033629 by Sagar Singh on Tuesday 9th of April 2019 09:45:42 AM
Old 04-09-2019
Find file dont have that string

I have 13 text files and almost all of them contain the same string.
but some file has diffrent string inside.
I want to send that file which has a diffrent string inside
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

dont't find right regex

I have a string which contains following information: <SZ.T><P ALIGN="CENTER"><FONT FACE="Arial, Helvetica, sans-serif" SIZE="+3">Bundesregierung nimmt sich dicke Deutsche vor</FONT></P></SZ.T> <SZ.UT><P ALIGN="CENTER"><FONT SIZE="+1"><I> Seehofer und Schmidt planen Kampagne gegen... (3 Replies)
Discussion started by: trek
3 Replies

2. UNIX for Dummies Questions & Answers

Search for Files that DONT contain a string

How do I search for files that dont contain a certain string? I am currently trying find ./logs -size +1c -exec grep -l 'Process Complete' {} \; -exec ls -l {} \; > $TOD Which gives me files that are reater han 0 file size and contain the string 'Process complete' but I want files that DONT... (13 Replies)
Discussion started by: tonydsam
13 Replies

3. Shell Programming and Scripting

How to find a certain string in a file and replace it with a value from another file using sed/awk?

Hi Everyone, I am new to this forum and new to sed/awk programming too !! I need to find particular string in file1(text file) and replace it with a value from another text file(file2) the file2 has only one line and the value to be replaced with is in the second column. file 1: (assert (=... (21 Replies)
Discussion started by: paramad
21 Replies

4. Linux

Find String in FileName and move the String to new File if not found

Hi all, I have a question.. Here is my requirement..I have 500 files in a path say /a/b/c I have some numbers in a file which are comma seperated...and I wanted to check if the numbers are present in the FileName in the path /a/b/c..if the number is there in the file that is fine..but if... (1 Reply)
Discussion started by: us_pokiri
1 Replies

5. Shell Programming and Scripting

Find multiple string in one file using find command

Hi, I want find multiple string in one file using find coomand. And keeping it in one variable.grep is not working. (5 Replies)
Discussion started by: vivek1489
5 Replies

6. UNIX for Dummies Questions & Answers

How to find a file if we dont know exact location of file ?

Hi I want know "How to find a file if we dont know exact location of file ?" Thanks, Tushar Joshi:) (9 Replies)
Discussion started by: tusharjoshi
9 Replies

7. Shell Programming and Scripting

find string and replace with string in other file

Dear all, I need your help, I have file like this: file1:23456 01910964830098775635 34567 01942809546554654323 67589 26546854368698023653 09778 58716868568576876878 08675 86178546154065406546 08573 54165843543054354305 . .file2: 23456 25 34567 26 67589 27 (2 Replies)
Discussion started by: attila
2 Replies

8. Shell Programming and Scripting

Find string in file and append new string after

Hi All, I'm trying to insert a string into a file at a specific location. I'd like to add a string after the parent::__construct(); in my file. <?php if (! defined('BASEPATH')) exit('No direct script access allowed'); class MY_Controller extends CI_Controller { function... (6 Replies)
Discussion started by: jjkilpatrick
6 Replies

9. Shell Programming and Scripting

Find string in file and find the all records by string

Hello I would like to get know how to do this: I got a big file (about 1GB) and I need to find a string (for instance by grep ) and then find all records in this file based on a string. Thanks for advice. Martin (12 Replies)
Discussion started by: mape
12 Replies

10. Shell Programming and Scripting

Perl script to read string from file#1 and find/replace in file#2

Hello Forum. I have a file called abc.sed with the following commands; s/1/one/g s/2/two/g ... I also have a second file called abc.dat and would like to substitute all occurrences of "1 with one", "2 with two", etc and create a new file called abc_new.dat sed -f abc.sed abc.dat >... (10 Replies)
Discussion started by: pchang
10 Replies
Glib::KeyFile(3)					User Contributed Perl Documentation					  Glib::KeyFile(3)

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 containes 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-2009 by the gtk2-perl team. This software is licensed under the LGPL. See Glib for a full notice. perl v5.12.1 2010-07-05 Glib::KeyFile(3)
All times are GMT -4. The time now is 03:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy