FSUM7342
file "filename" already exists

Explanation

You attempted to redirect output into an existing file, but you have turned on the noclobber option (see set 1).

User response

Use the construct >| filename to redirect the output into an existing file or turn the noclobber option off with set+o noclobber.