$ vi `!!`
say you've just found all the config files with this command
find . -name '*.config'
and you need to edit them all
vi `!!`
will re-execute the command and present them to vi in the argument list
don't use if the list is really long as it may overflow the command buffer
by David Winterbottom (codeinthehole.com)