Deleting lines above a certain line

Hi,

I have a file that gets automatically generated and it would look something like

sakjsd
adssad
{{word}}

sddsasd
dsdsasa
.
.
.

So basically what I want to do is just keep the stuff below the {{word}} marker. The marker includes the brackets. Is there any command to delete the "{{word}}" and everything above it and just keep what is below it? Thanks!

sed '1,/{{word}}/d' myFile
awk '/{{word}}/{f=1;next}f' file

cool thanks a bunch!