Thanks! This is much more what I expected. Things that look generally like outputs that commands might produce, and with some mind-blowing correct outputs (e.g. the effect of tr on the source code) but also some wrong outputs (e.g. the section after echo A >a; echo X >b; echo T >c; echo H >d; the output being consistent between cat a a c b d d and cat a a c b d d | sort (but inconsistent with the “actual contents” of the files) is especially the kind of error I’d expect an LLM to make).
Thanks! This is much more what I expected. Things that look generally like outputs that commands might produce, and with some mind-blowing correct outputs (e.g. the effect of
tr
on the source code) but also some wrong outputs (e.g. the section afterecho A >a; echo X >b; echo T >c; echo H >d
; the output being consistent betweencat a a c b d d
andcat a a c b d d | sort
(but inconsistent with the “actual contents” of the files) is especially the kind of error I’d expect an LLM to make).