Multiple search string in multiple files using awk


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Multiple search string in multiple files using awk
# 1  
Old 05-05-2009
Multiple search string in multiple files using awk

Hi,

filenames:
contains name of list of files to search in.

placelist
contains the names of places to be searched in all files in "filenames"

Code:
for i in $(<filenames)
do
egrep -f placelist  $i
if [[ $? == 0 ]]
then
echo $i
fi
done >> outputfile

Output i am getting:
Quote:
abcdefghi
file1
kjlmnop
file2
inkoo
kiiou
file3
I want output like this.

Quote:
file1:abcdefghi
file2:kjlmnop
file3:inkoo
file3:kiiou
Appreciate help
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Issue with search and replacing multiple items in multiple files

Im having an issue when trying to replace the first column with a new set of values in multiple files. The results from the following code only replaces the files with the last set of values in val.txt. I want to replace all the files with all the values. for date in {1..31} do for val in... (1 Reply)
Discussion started by: ncwxpanther
1 Replies

2. Shell Programming and Scripting

Search string in multiple files and display column wise

I have 3 files. Each of those files have the same number of records, however certain records have different values. I would like to grep the field in ALL 3 files and display the output with only the differences in column wise and if possible line number File1 Name = Joe Age = 33... (3 Replies)
Discussion started by: sidnow
3 Replies

3. Shell Programming and Scripting

Search & Replace: Multiple Strings / Multiple Files

I have a list of files all over a file system e.g. /home/1/foo/bar.x /www/sites/moose/foo.txtI'm looking for strings in these files and want to replace each occurrence with a replacement string, e.g. if I find: '#@!^\&@ in any of the files I want to replace it with: 655#@11, etc. There... (2 Replies)
Discussion started by: spacegoose
2 Replies

4. Shell Programming and Scripting

Script to find & replace a multiple lines string across multiple php files and subdirectories

Hey guys. I know pratically 0 about Linux, so could anyone please give me instructions on how to accomplish this ? The distro is RedHat 4.1.2 and i need to find and replace a multiple lines string in several php files across subdirectories. So lets say im at root/dir1/dir2/ , when i execute... (12 Replies)
Discussion started by: spfc_dmt
12 Replies

5. Shell Programming and Scripting

awk + gsub to search multiple input values & replace with located string + extra text

Hi all. I have the following command that is successfully searching for any one of the strings on all lines of a file and replacing it with the instructed value. cat inputFile | awk '{gsub(/aaa|bbb|ccc|ddd/,"1234")}1' > outputFile This does in fact replace any occurrence of aaa, bbb,... (2 Replies)
Discussion started by: dazhoop
2 Replies

6. Shell Programming and Scripting

String search and replace in multiple files.

Hello. I have five config files in /etc that I want to edit in one click for testing. I would like to make a script like this : #!/bin/bash # a_file="/etc/file_1" src_str="src_string_1" rpl_str="rpl_string_1" calling_sed_or_awk_or_whatelse $a_file search_for_all $src_str replace_with... (4 Replies)
Discussion started by: jcdole
4 Replies

7. Shell Programming and Scripting

Search multiple patterns in multiple files

Hi, I have to write one script that has to search a list of numbers in certain zipped files. For eg. one file file1.txt contains the numbers. File1.txt contains 5,00,000 numbers and I have to search each number in zipped files(The number of zipped files are around 1000 each file is 5 MB) I have... (10 Replies)
Discussion started by: vsachan
10 Replies

8. UNIX for Dummies Questions & Answers

best method of replacing multiple strings in multiple files - sed or awk? most simple preferred :)

Hi guys, say I have a few files in a directory (58 text files or somthing) each one contains mulitple strings that I wish to replace with other strings so in these 58 files I'm looking for say the following strings: JAM (replace with BUTTER) BREAD (replace with CRACKER) SCOOP (replace... (19 Replies)
Discussion started by: rich@ardz
19 Replies

9. Shell Programming and Scripting

extract multiple cloumns from multiple files; skip rows and include filenames; awk

Hello, I am trying to write a bash shell script that does the following: 1.Finds all *.txt files within my directory of interest 2. reads each of the files (25 files) one by one (tab-delimited format and have the same data format) 3. skips the first 10 rows of the file 4. extracts and... (4 Replies)
Discussion started by: manishabh
4 Replies

10. UNIX for Dummies Questions & Answers

problem with grep on search string in a txt file over multiple files

I have a couple of things I got stuck on 1) I have a text file containing 25k search string that I need to search against compressed file. I have used this command but somehow it doesn't seems to use all the search terms. I have put one search string per line in the txt file (I clean up... (2 Replies)
Discussion started by: m00
2 Replies
Login or Register to Ask a Question
KPSEWHICH(1)						      General Commands Manual						      KPSEWHICH(1)

NAME
kpsewhich - standalone path lookup and and expansion for kpathsea SYNOPSIS
kpsewhich [options] [filenames] DESCRIPTION
This manual page is not meant to be exhaustive. The complete documentation for this version of TeX can be found in the info file or manual Kpathsea: A library for path searching. kpsewhich is used as a standalone front-end of the kpathsea library that can be used to examine variables and find files. When the --for- mat option is not given, the search path used when looking for a file is inferred from the name given, by looking for a known extension. If no known extesion is found, the search path for TeX source files is used. OPTIONS
kpsewhich accepts the following options: --debug num Set debugging flags. -D num Use a base resolution of num; the default, set by the installer, is typically 600. --dpi num As -D. --expand-braces string Print variable and brace expansion of string. --expand-path string Print complete path expansion of string. --expand-var string Print variable expansion of string. --format name Use file type name. See the info manual for a list of valid names, or use the --help option to print the list. --help Print help message and exit. --interactive Ask for additional filenames to look up. --mktex fmt enable mktexfmt generation. (fmt=pk/mf/tex/tfm) --mode string Set device name for $MAKETEX_MODE to string; no default. --must-exist Search the disk as well as ls-R if necessary. --no-mktex fmt disable mktexfmt generation. (fmt=pk/mf/tex/tfm) --path string Search in the path string. --progname string Set program name to string. --show-path name Output search path for file type name. See the info manual for a list of valid names, or use the --help option to print the list. --version Print version information and exit. SEE ALSO
mktexlsr(1), mktexmf(1), mktexpk(1), mktextfm(1). Kpathsea 3.3.1 4 January 1998 KPSEWHICH(1)