Hi Junio, On Mon, Mar 18, 2019 at 03:35:56PM +0900, Junio C Hamano wrote: > SZEDER Gábor <szeder.dev@xxxxxxxxx> writes: > > >> + git commit ${3+"$3"} -m "$2" >act && > >> + head -1 <act >tmp && > >> + mv tmp act && > > > > Here you could swap the order of when you write to 'act' and 'tmp', > > and thus make the 'mv' unnecessary, like this: > > > > git commit [...] >tmp && > > head -1 act >tmp && > > [...rest of the test...] > > > > Note also that 'head' (or 'sed' in later tests) can open its input > > file on its own, there's no need to redirect its standard input. > > Yup, that is better with a slight fix > > git testing-output-from-this-command ... >tmp && > head -n 1 tmp >actual && > > to actually read from the output kept in the temporary file. > > Especially I think bare -<num> is a BSDism that has been > removed from POSIX some time ago. You mentioned in an earlier email that, > The intermediary file may want a name better than 'tmp', if it is to > be left behind, but this will do for now. so I wrote it in a way temporary files wouldn't be produced, similar to how 'set up mod-256 conflict scenario' in t7600 does it. Would it be better to leave the temporary files behind like how v7 of the patches did it or should keep the mv? Thanks, Denton