display 5 lines from the particular text

Hi All,
please help me to display 5 continious lines from a particular text.

my file is as below.

file1.txt
------

Good
1
2
3
4
5
luck
1
2
3

I want to diplay 5 lines from the word Good.

I tried the below command

grep -A5 "Good" file1.txt

I got the below error message

grep: illegal option -- A
grep: illegal option -- 5
usage: grep [-E|-F] [-c|-l|-q] [-bhinsvx] -e pattern_list...
        [-f pattern_file...] [file...]
usage: grep [-E|-F] [-c|-l|-q] [-bhinsvx] [-e pattern_list...]
        -f pattern_file... [file...]
usage: grep [-E|-F] [-c|-l|-q] [-bhinsvx] pattern [file...]

please help me to over come this issue. Thanks!

Something like this?

awk '/Good/{c=5;next}c && c-- > 0' file

or may be sed...

sed -n '/Good/{g;N;N;N;N;N
p
}' filename

just a little modification to Franklin code:

awk '/Good/{c=4;next} c-->0 ' file1.txt

Thanks to Franklin

regards,
Sanjay

If you are using GNU sed,

$sed -n '/Good/,+5p' filename
Good
1
2
3
4
5