find specific string from files in unix and show files

find specific string from files in unix and show files

This would select and print on the terminal.
Say you want to examine gullele.wordpress.com from all index.html files that are residing in some directory and sub directory
then:
find . -name ‘index.html’ -exec ‘gullele.wordpress.com’ {} ; -print
would list all index.html files with the given content inside them.

See how you would solve these known algorithm problems

Find K Complementary numbers from array Java implementation

Implement Queue Using two Stacks – JavaScript algorithm

Find the pairs that makes K Complementary in the given array java solution

find longest word in the sentence

Get maximum occurring character

Changing decimal number to its binary equivalent

Find longest palindrom from sequence of characters

Implementing tokenizer and adding tokens to the linked list

Flatten nested javascript array

testing k complementary pairs algorithm with junit

Leave a Reply

Your email address will not be published. Required fields are marked *

*
*