And then after you can do your previous command but make sure to append so as not to over write.
more file.vcf | grep "1/1" >> homo.vcf
Also if you know exactly how many lines are in your header that you want to keep (like say 13) you can do:
head -13 > homo.vcf to put the header in a file.