History of AFNI updates  

|
June 04, 2020 05:30PM
Howdy-

That's why I had the
echo ` .... `
around the 3dinfo command-- I think that should still work if you include *everything* in that line?

Or is the problem that you want to wrap everything in `...`, say, to save the output as a variable? In that case, you could do something like:
#tcsh 
set variable = `3dinfo -label  FILE | tr '|' '\n' | grep Coef`
# bash
variable=`3dinfo -label  FILE | tr '|' '\n' | grep Coef`
... which is basically what you had, but you don't need to change the default subbrick delimiter, then.

--pt
Subject Author Posted

THD_zzprintf() long string truncation = the ZSS syndrome

mjeffers June 04, 2020 03:25PM

Re: THD_zzprintf() long string truncation = the ZSS syndrome

ptaylor June 04, 2020 04:21PM

Re: THD_zzprintf() long string truncation = the ZSS syndrome

mjeffers June 04, 2020 04:40PM

Re: THD_zzprintf() long string truncation = the ZSS syndrome

ptaylor June 04, 2020 05:30PM

Re: THD_zzprintf() long string truncation = the ZSS syndrome

mjeffers June 04, 2020 09:51PM

Re: THD_zzprintf() long string truncation = the ZSS syndrome

rick reynolds June 04, 2020 10:14PM

Re: THD_zzprintf() long string truncation = the ZSS syndrome

mjeffers June 04, 2020 10:37PM

Re: THD_zzprintf() long string truncation = the ZSS syndrome

ptaylor June 05, 2020 09:44AM

Re: THD_zzprintf() long string truncation = the ZSS syndrome

japees November 22, 2021 02:57PM

Re: THD_zzprintf() long string truncation = the ZSS syndrome

rick reynolds December 02, 2021 09:09AM