AFNI Message Board

Dear AFNI users-

We are very pleased to announce that the new AFNI Message Board framework is up! Please join us at:

https://discuss.afni.nimh.nih.gov

Existing user accounts have been migrated, so returning users can login by requesting a password reset. New users can create accounts, as well, through a standard account creation process. Please note that these setup emails might initially go to spam folders (esp. for NIH users!), so please check those locations in the beginning.

The current Message Board discussion threads have been migrated to the new framework. The current Message Board will remain visible, but read-only, for a little while.

Sincerely, AFNI HQ

History of AFNI updates  

|
June 28, 2012 01:23PM
You could use

3dDeconvolve -stuff input+orig 2>&1 | tee 3dDeconvolve.log
(if you're using bash)

or

3dDeconvolve -stuff input+orig |& tee 3dDeconvolve.log
(if you're using tcsh)

which would save all the screen output to a file 3dDeconvolve.log in the current directory. If you don't care about seeing the output on the screen and only want the file, you could use the simpler

3dDeconvolve -stuff input+orig >& 3dDeconvolve.log

where in this case it doesn't matter if you're using bash or tcsh.
Subject Author Posted

output text

vanessa June 28, 2012 12:33PM

Re: output text

rick reynolds June 28, 2012 01:19PM

Re: output text

Isaac Schwabacher June 28, 2012 01:23PM

Re: output text

vanessa June 28, 2012 02:17PM

Re: output text

Isaac Schwabacher June 28, 2012 02:33PM