LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 07-01-2012, 11:36 AM   #1
secman110
LQ Newbie
 
Registered: Jul 2012
Posts: 4

Rep: Reputation: Disabled
How to check if a string inside file is longer than 50 characters.


Hi,

I am wondering if it is possible to use find and grep to search inside files to check if there is a string longer than 50 characters inside files.

Thanks,
 
Old 07-01-2012, 11:51 AM   #2
rosehosting.com
Member
 
Registered: Jun 2012
Location: Missouri, USA
Posts: 236

Rep: Reputation: 64
To search in one file:
Code:
grep -e '[^\ ]\{50,\}' /path/to/file
Recursive search:
Code:
grep -Re '[^\ ]\{50,\}' /path/to/directory
 
Old 07-01-2012, 12:20 PM   #3
David the H.
Bash Guru
 
Registered: Jun 2004
Location: Osaka, Japan
Distribution: Arch + Xfce
Posts: 6,852

Rep: Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037
It would help if you gave a few more details. What constitutes a "string"? Do you mean whitespace-delimited characters? Whole lines? What? Perhaps you could give us a bit of sample text?

The suggestion given above searches for strings of 50 or more consecutive non-space characters. You can avoid the backslashes, however, by using the "-E" extended regex option, and you don't need to use "-e" when there's only a single expression.

Code:
grep -E '[^[:space:]]{50,}' /path/to/file
Notice that I also replaced the simple space with the "[:space:]" character class, which covers all whitespace characters.

"[^\ ]" is wrong in either version, BTW, as it means "not a backslash or a space". All simple characters are considered literal when inside a regex bracket expression except for "^","-", and "]", and even those are made unspecial by placing them in certain positions inside the brackets (i.e. "^" is only special if it's the first character in the list).
 
Old 07-01-2012, 01:22 PM   #4
secman110
LQ Newbie
 
Registered: Jul 2012
Posts: 4

Original Poster
Rep: Reputation: Disabled
Here is the examples of the strings:

xGaaSZgwC2bw5Fl2RaWS1yw
2ecacebe01e77fe2dd40

Thank you!
 
Old 07-01-2012, 04:28 PM   #5
secman110
LQ Newbie
 
Registered: Jul 2012
Posts: 4

Original Poster
Rep: Reputation: Disabled
Smile

Thank you all. I got my answer with your help.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Sed/awk/cut to pull a repeating string out of a longer string StupidNewbie Programming 4 09-13-2018 03:41 AM
[SOLVED] Shell Script Field longer than 20 characters karelvdm Programming 3 07-13-2011 06:24 AM
How to find a file with specific string inside it. pinga123 Linux - Newbie 5 05-07-2010 06:30 AM
How to find a string inside file in the whole disk penguinux Linux - Newbie 2 10-20-2008 07:34 AM
How to check for NULL characters in file ? sharathkv Programming 6 12-11-2006 11:14 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:30 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration