On Fri, Dec 16, 2022 at 06:25:12PM +0000, Edwin Török wrote: > + git ls-files '*.c' '*.h' | xargs -n1 sed -ie 's/\t/ /g'
Seen as there's a patch adding .clang-format, what the point of this command? "-ie" means to ask sed to change file in-place an keep a copy of the original file with "e" as suffix. So please replace that by "-i~" or "-i -e" or just "-i", with the first one create a "~" backup, the last two not creating a backup at all and probably what you wanted. ("-e" is optional as there's only a single command) Thanks, -- Anthony PERARD