Learning the bash Shell, 2nd Edition by Cameron Newham & Bill Rosenblatt Here are the changes made in the 5/99 reprint: (50) In the last paragraph, 1st sentence: "ceratin" was changed to "certain" {164} In Table 7-1, the 12th line used to read: >> file Direct file descriptor "n" to "file"; append to "file" if it already exists. The redirector was changed to read: n>>file {174} Code sample 2 used to read < TERM=vt100; line=$(tty); while ...} < /etc/terms It now reads: < TERM=vt100; line=$(tty); while ...} < /etc/terms; (224) Table 9-2, row 1: "The shell exists from script" was changed to read "The shell exits from script"