0
votes
2answers
26 views

how to fgrep/egrep exact string in a file

I'm trying to search for an EXACT string match in a file. I know it can be done via "grep -w" but for some reason, i dont to do it with grep. Already tried these and didnt work for me: egrep '\< ...
2
votes
2answers
47 views

Exact grep -f command in Linux

I have 2 txt files in Linux. A.txt contents (each line will contain a number): 1 2 3 B.txt contents (each line will contain a number): 1 2 3 10 20 30 grep -f A.txt B.txt results below: 1 2 3 ...
1
vote
6answers
76 views

Printing lines from a file using an input file that contains the line numbers

I have a file numbers.txt that contains a number on every line. I want to use that file to print out the lines in the file lines.txt, i.e. the lines that correspond to the numbers in numbers.txt. ...
-2
votes
2answers
22 views

How to get revs in subversion based on multiple ticket numbers in the comments? [closed]

I tried multiple ways to get revisions in subversion based on multiple ticket numbers entered in svn comments in bash. Please advice !! #!/bin/sh SEARCH=$1 URL=$2 echo "Searching for ["$SEARCH"]" ...
0
votes
3answers
52 views

Using grep to list lines starting with

I am trying to Use the GREP command to list all lines which contain the letter 'd' at least twice in a row (that is, next to each other), from file "test". But i can't get it to work. Can someone ...
1
vote
3answers
39 views

Grep part of large file without spliting it

How can I grep a certain part of a large file from lines 1000 to 2000, up to line 1000 or from line 1000 for example? I don't want to split the file in smaller files.
-3
votes
1answer
37 views

Create a new file based on matching between two files

I am having two files First file is in this format. Each line starts with unique id (in this case P22465) P22465 DB DB; EC.31.1.1; the annexin (annexin) group. Second file is in this ...
2
votes
6answers
57 views

Using regex to extract a substring while excluding a certain phrase

Say for the string: test.1234.mp4 I would like to extract the numbers 1234 without extracting the 4 in mp4 What would the regex be for this? The numbers aren't always in the second position and ...
0
votes
1answer
46 views

Filter out HTML code with grep

I am working on a project using a bash shell script. The idea is to grep a wget retrieved page, in order to pick up a certain paragraph on the web page. The area I would like to copy, usually starts ...
0
votes
2answers
38 views

No Output from grep or fgrep with -f option not working

I have the following regular expression in a file. BTW, im on SunOS Ex: File pattern contains the following lines: Ora-[0-9] violated I have a file "datafile" which contain the following: ...
-4
votes
1answer
40 views

Search multiple patterns[separated by newline] in the same text line using grep [closed]

I have a text file which looks like : 12345 12-02-2013 05:12:23:234 searchPeople service called by the follwoing input : name : Tom id : 12345 regd_no : REGD1234 ...
1
vote
1answer
42 views

How to print column offset within each matching line in grep

By passing -o -n to grep I can output all matching parts of a pattern within a file, and the line number on which each match was found. How can I also print the column offset within that line at ...
-1
votes
1answer
52 views

GNU grep with regex support.

I found the solution to How do I get GNU grep to match exactly "H" and not things that just start with "H"? thanks to Kent using the following: grep -o '\bH\b'|wc -l But i need ...
0
votes
1answer
49 views

Unix - print grep output in order

I'm using this istruction: VAR=$(grep -r -i --color=always --exclude=\*.{sh,pdf,doc,docx} "$WORD" "$DIRECTORY") this gives me an output like this: ...
0
votes
3answers
23 views

Script variables in C-shell

There is a my_grep script #!/bin/csh cat $1 | grep -i -E " a | b " How come cat a* | grep -i -E " a | b " > out1.txt and my_grep a* > out2.txt yield different results?
0
votes
2answers
32 views

Using grep to filter directories

I'm using find . -type d to list all directories in a folder. Now say I'm in my home folder. And something like this is my result: . ./.cache ./.config/junk ./Documents ./Downloads ...
3
votes
2answers
82 views

grep -f alternative for huge files

grep -F -f file1 file2 file1 is 90 Mb (2.5 million lines, one word per line) file2 is 45 Gb That command doesn't actually produce anything whatsoever, no matter how long I leave it running. ...
1
vote
2answers
46 views

Load pictures from directory into array

I'd like to load all pictures from directory and save them into array. @files = `ls $ARGV[0] | grep -i -E jpe?g|gif|png$`; This line gives me an error: Final $ should be \$ or $name @files = `ls ...
0
votes
2answers
41 views

git find and rename a string in multiple filenames and folder names

So Basically I need to find all files and folders in my github project containing the string 'persons' find . -type f -print | grep "persons" find . -type d -print | grep "persons" The above works ...
0
votes
3answers
50 views

How do I remove lines from every file that has a matching text?

$ grep "console.log" * -R account/db.js: console.log(err); account/db.js: console.log(info); account/db.js: console.log(err); account/db.js: ...
1
vote
3answers
106 views

to grep a pattern from file compare contents with another file and replace

I want to grep version number in one file and replace it in another file. I want to grep 4.3.0.5 in file 1 and replace it in File 2 at 4.3.0.2. I have the below command to get the number , but how can ...
0
votes
2answers
16 views

Grep out all file extensions from input

My input is a large list of files. They could have any characters in the name (including periods, because there are some package names as well). Here's some small sample input: ...
0
votes
1answer
205 views

Shell script using loop, while, grep and awk to find list of terms and corresponding values [duplicate]

I am searching/ trying to match a list of terms (Ensemble Gene IDs) from my source file with those in the target rnaseq.gtf file. I want to print out the matched/ grep'd ENSEMBLE gene IDs with their ...
0
votes
1answer
204 views

Searching for text using grep awk shell script unix

Hi I'm trying to write a shell script that searches for text within a file and prints out the text and associated information to a separate file. From this file containing list of gene IDs: DDIT3 ...
0
votes
1answer
37 views

Comparing a file name pattern

I have a few files of type server.log."date" and data.log."date" in tar.gz archive where date is the date of the file creation. Now I need to retrieve files of the type server.log.* and search for a ...
2
votes
2answers
60 views

How to Write a Unix Shell to Sum the Values in a Row Against Each Unique Column (e.g., how to calculate total votes for each distinct candidate)

In its basic form, I am given a text file with state vote results from the 2012 Presidential Election and I need to write a one line shell script in Unix to determine which candidate won. The file has ...
4
votes
4answers
57 views

Combining -v flag and -A flag in grep

I need to search a file for a string, remove any line that contains the string, and also remove the two lines following any line that contains the string. I was hoping I could accomplish this using ...
-4
votes
1answer
76 views

How to get the count of duplicate strings in a set using grep, uniq and awk in unix?

I have a very large set of strings, one on every line of a file. Many strings occur more than one times in the file at different locations. I want a frequency count of the strings using unix ...
1
vote
2answers
37 views

using for loop and pass variables to a command

I have two files, table1.txt and table2.txt, with the first column having characters chr1, chr2, chr3 in both. I want to iterate a command such that it greps the rows containing only one of chr1, ...
1
vote
2answers
53 views

Getting word count with Grep

I have been using grep -o string file | wc -l to obtain word counts, but I have a file of the format help help help how how luke mark And I was wondering if there was a command that would ...
1
vote
3answers
93 views

Is there a grep equivalent for find's -print0 and xargs's -0 switches?

I often want to write commands like this (in zsh, if it's relevant): find <somebasedirectory> | \ grep stringinfilenamesIwant | \ grep -v stringinfilesnamesIdont | \ xargs ...
-1
votes
2answers
66 views

GREP - What language is Linux / Unix utilities written in? [closed]

I was curious as to which language was utilities built into the Linux kernel was written in such as grep, cut, awk, find etc. Are these compiled and can not be cat'ed and viewed?
0
votes
1answer
101 views

Unix grep command to return groups of rows in a textfile where it meets conditions

I have a large text file containing the following records: 024567808 name date etc.. 0376567 dfu ugig etc.. 0388888 dtg hii etc.. 032357 tuth gug etc.. 025789 gkh kjkjk etc.. Using the grep ...
1
vote
2answers
29 views

Regex for ^A and ^S ? Not able sed or grep it?

I have a file which contains this line. Input sls="N" stnid="armID" sls="N" stnid="C-ARM #11 w^Aw^Aw^A^Sg^Aw" sls="N" stnid="virtualID" For I which I want an output like sls="N" stnid="armID" ...
2
votes
2answers
54 views

Display lines that have an odd number of characters using grep

Using grep display the lines that have an odd number of characters . Any ideas, I don't know how to get the number of characters from each line, I tried with wc but it only counts the number of ...
1
vote
1answer
56 views

How to save both matching and non-matching from grep

I use grep very often and am familiar with it's ability to return matching lines (by default) and non-matching lines (using the -v parameter). However, I want to be able to grep a file once to ...
-2
votes
2answers
137 views

Grepping for exact words with UNIX [closed]

I want to search Exact word pattern in Unix, Example : Log.txt file contains following text : aaa bbb cccaaa ---> this should not be counted in grep output I am using following code- ...
0
votes
3answers
30 views

Backreference regular expresions Unix

I really don't understand how I can use these backreferences. Let me give you an example: grep '\([a-z]\)\([a-z]\)[a-z]\2\1' The instruction before finds the palindrome words in a file. But I don't ...
1
vote
1answer
32 views

Find missing URL routes using the command-line

I'm trying to automate a check for missing routes a Play! web application. The routing table is in a file in the following format: GET /home Home.index GET /shop Shop.index I've ...
1
vote
2answers
74 views

Extract a line if it contains a word in a specified column

I want to extract a line if it contains a word in a specified column of a textfile. How can i do it on a one-liner unix command to do it? Maybe with cat, echo, cut, grep with several piples or ...
-7
votes
2answers
98 views

How to grep a string in a directory and all its subdirectories' files in LINUX? [duplicate]

How to grep a string or a text in a directory and all its subdirectories'files in LINUX ??
-2
votes
2answers
77 views

Grep doesn't work [closed]

This don't work for me grep -vE '^\..*' tmp1.txt >grep.txt grep -vE '^le-.*\.sh' grep.txt >tmp1.txt tmp1.txt before .config le-test.sh a b c after .config le-test.sh a b c anyone ...
0
votes
2answers
64 views

Formatting XML file [closed]

Original Data : <?xml version="1.0"?> <CascadedExtractFileData> <Country> <IsoCountryCode>IN</IsoCo untryCode> <Provider> ...
1
vote
2answers
126 views

concatenate many lines of output to one line

If I run the command cat file | grep pattern, I get many lines of output. How do you concatenate all lines into one line, effectively replacing each "\n" with "\" " (end with " followed by space)? ...
0
votes
2answers
29 views

greping and replacing 2 file paths

I am currently working on a project where I would like to change a picture in multiple places. old file dir: /images/icons/helpPop.png new file dir: ...
-4
votes
1answer
77 views

FIND and Replace IP using grep & sed [closed]

I want to find IP address using Grep and then replace with another IP in that file?
0
votes
1answer
39 views

Alternative to slow grep

Currently I have a system log (Growl.app in this case) that I'd like to see from time to time. I use grep to filter out the lines I do not wish to see. cat /Users/Daniel/Library/Logs/Growl.log | grep ...
0
votes
4answers
76 views

How do I filter out lines of a text file that have length of 8 and ends in .com?

I have a list of a million domain names in name.txt hello.com abc.com gogogo.us goodbye.me ... ... How do I pipe only domain names with 8 letters (including the .com) and only ends in .com to ...
0
votes
2answers
162 views

Display filename and match in grep

How to get the filename and matching line in grep output? Something like, <filename> <match line> Os version: SunOS 5.10
0
votes
3answers
71 views

Use regex to retrieve string between characters

I would like to either use a grep command or just know the regex to get the following string between the ">" and "<" characters. string : <f id=mos-title>demo-break-1</f> I would ...

1 2 3 4 5 10