./configure --prefix=/home/you/mpich-install 2>&1 | tee config.log (bash) --prefix=....|& tee (csh) make VERBOSE=1 |& tee make.log (for csh and tcsh) make VERBOSE=1 2>&1 | tee make.log (for bash and sh) VERBOSE=1 (optional) make install |& tee makeinstall.log make install 2>&1 | tee makeinstall.log ./configure \ \ means that this is really one line. |
Wiki >