Is it possible, in C-shell, to nest command substitution? I'm looking for
a way to make instructions like the following work without having to capture
intermediate results into a shell variable:
set DayOfWeek = ``date` | nawk '{split($0, arr); printf("%s", arr[1])}'`
Thanks in advance for any replies.
RLB