I'm scripting some data transfer routines and incorporating exp
and imp
into the workflow. Both of these have a FILE=
parameter to specify the data file.
Is there a way to specify stdin and stdout? I would love to do something like this:
exp ... | ssh foo imp ...
Right now I'm halfway tempted to work around this with mkfifo, but that seems a bit on the clunky side.