I should have made myself a bit more clear: > There is a rather annoying thing happening here. Remember > that commands in bash ending with an ampersand sign & are > executed in the background (i.e. the command is executed and > you get your prompt back rather than having to wait). >
I.e. everything in your command after the '&' is ignored - hence the '| grep resultaten' is never used. This means lynx *does* dump to stdout, but its output is not grepped, as you were hoping ;) Ciao, Dan