There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
 
Software Development
Tag Cloud
audio blue screen boot bsod computer cpu crash dell desktop driver drivers error excel external hard drive firefox freezes freezing hard drive hardware hijackthis internet internet explorer itunes laptop mac malware motherboard mouse network networking outlook 2007 power printer problem ram router screen slow sound trojan usb virus vista vista 32-bit windows windows vista windows xp winxp wireless wmp
Search
Search in:
 
Advanced Search
Tech Support Guy Forums > Software & Hardware > Software Development >
Script to list specific lines from a file


Computer problem? Tech Support Guy is completely free -- paid for by advertisers and donations. Click here to join today! If you're new to Tech Support Guy, we highly recommend that you visit our Guide for New Members. Enjoy!

Closed Thread
 
Thread Tools
mariolima's Avatar
Junior Member with 24 posts.
 
Join Date: Nov 2002
Location: Sao Paulo - Brazil
08-Jun-2004, 04:10 PM #1
Script to list specific lines from a file
Hi:

I need a very simple script, in CGI-Perl or even bash language, and to be started from a browser form, to just read a file, finding a specific line by comparing to a received pattern, and from this line ahead always list 3 lines.

Considering, for instance, this file, that I would call: rejected.log:

11111111 22222222 33333333
22222222 bbbbbbbb ccccccccc
jdjfheduf sdkfheuf idifhdihfif
difheihfi eiofjeif efi9ef eijh eifje fef
aaaaaaaa 22222222 33333333
ddddddddd bbbbbbbb ccccccccc
kdjgirir iofejgiejrg ioerugejge
ljeri 98rg398 gio3jrg9 3rjoer

If I run the script by:

scriptname aaaaaaaa

It should list the lines:

aaaaaaaa 22222222 33333333
ddddddddd bbbbbbbb ccccccccc
kdjgirir iofejgiejrg ioerugejge

Please, note that it also should list all the existing occurrences of the same aaaaaaaa through the file.

I thank a lot in advance for this so special help.

Mario./
codejockey's Avatar
Senior Member with 1,410 posts.
 
Join Date: Feb 2002
09-Jun-2004, 04:12 PM #2
Would something like this do what you want?
Code:
#! /bin/sh

FILENAME=rejected.log
PATTERN="$1"

if [ -z "$PATTERN" ]
then
    echo must supply a search parameter ... exiting ...
    exit 1
else
    egrep -A 2 "$PATTERN" $FILENAME
fi
Of course, you could also supply the filename to be searched as an argument to the script.
Closed Thread

THIS THREAD HAS EXPIRED.
Are you having the same problem? We have volunteers ready to answer your question, but first you'll have to join for free. Need help getting started? Check out our Welcome Guide.


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
WELCOME TO TECH SUPPORT GUY! Are you looking for the solution to your computer problem? Join our site today to ask your question -- for free! Our site is run completely by volunteers who want to help you solve your computer problems. See our Welcome Guide to get started.



Thread Tools


You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -4. The time now is 09:23 AM.
Copyright © 1996 - 2008 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Powered by Cermak Technologies, Inc.