hdc at fs.ca wrote: > I need to combine these lines into a single line (and then perform other > manipulations on the data), so I am trying to use sed and/or tr to remove the > CR/LF combination. tr -d '\r\n' < file > newfile Or, with an older tr that doesn't recognize those escape codes, tr -d '\15\12' < file > newfile