mob/verb/tell(T as text)
text2file(T,"talk.in")
shell("talk < talk.in > talk.out")
usr << file2text("talk.out")
Problem description:
this is a modified file2text example found using the f1 key. the shell statement is not creating the talk.out file. when executing the verb, there is no talk.out file created at root of game. why doesn't this code work?