Is there a way to do a &> output redirection (everything, even errors) but make it append? I figured &>> would work, but it errors out.
>>foo is sending stdout to the file, 2>&1 is sending stderr to wherever stdout is going.Originally posted by: RedSquirrel
Won't 2> only output errors though?
