![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Linux RedHat, Ubuntu, SUSE, Fedora, Debian, Mandriva, Slackware, Gentoo linux, PCLinuxOS. All Linux questions here! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Decrease the Line Gap in a files and Echo a strings | thepurple | Shell Programming and Scripting | 5 | 12-08-2008 02:03 AM |
| Find Strings in Files | thepurple | Shell Programming and Scripting | 3 | 10-04-2008 06:23 AM |
| Merge two strings not from files | buddyme | UNIX for Dummies Questions & Answers | 2 | 07-15-2008 10:17 PM |
| comparing strings in seperate files | orahi001 | UNIX for Dummies Questions & Answers | 2 | 03-27-2008 12:04 PM |
| appending strings in the files | vijaylak | UNIX for Dummies Questions & Answers | 2 | 03-09-2007 07:34 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Strings does not work for big files
I was trying to calculate DBID of oracle database according to the topic Oracle in World: How to Discover find DBID and following number 2) mechanism specified there that is using of strings keyword.
My unfortunately my oracle database datafile is so big that I could not use strings keyword for searching. I used, strings datafilename_loc. It failed with big file size. What I will do now? How I can open file with strings? |
|
||||
|
Hi.
Instread of grep, perhaps you could use sed? Code:
strings ..... | sed "/MAXVALUE/!d;q" Code:
strings .... | grep -m1 MAXVALUE Last edited by scottn; 08-09-2009 at 05:59 AM.. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|