Re: git-bisect: weird usage of read(1)

2 messages, 2 authors, 2016-06-15 · open the first message on its own page

Re: git-bisect: weird usage of read(1)

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:45:08

René Scharfe [off-list ref] writes:
Petr Baudis schrieb:
quoted
On Mon, Aug 11, 2008 at 04:59:32PM +0100, Reece Dunn wrote:
quoted
quoted
quoted
On Mon, 11 Aug 2008, Francis Moreau wrote:
quoted
              case "$(read yesno)" in [Nn]*) exit 1 ;; esac
does not work as expected. Replacing this with

               case "$(read yesno; echo $yesno)" in [Nn]*) exit 1 ;; esac

would work as intended, as Mikael has pointed out.
  Wouldn't it be more elegant to

	case "$(head -n 1)" in [Nn]*) exit 1 ;; esac
Only if head is a built-in, otherwise you fork needlessly.  Not that
this is a performance critical part, but I wouldn't call it "elegant".

What's wrong with the following variant, already used a few lines up in
the file?

	read yesno
	case "$yesno" in [Nn]*) exit 1 ;; esac
That's the right way to spell it.  Sorry, I must have been too tired
when I did this.

Re: git-bisect: weird usage of read(1)

From: Francis Moreau <hidden>
Date: 2016-06-15 22:45:08

On Mon, Aug 11, 2008 at 8:59 PM, Junio C Hamano [off-list ref] wrote:
René Scharfe [off-list ref] writes:
quoted
Petr Baudis schrieb:
quoted
On Mon, Aug 11, 2008 at 04:59:32PM +0100, Reece Dunn wrote:
quoted
quoted
quoted
On Mon, 11 Aug 2008, Francis Moreau wrote:
quoted
              case "$(read yesno)" in [Nn]*) exit 1 ;; esac
does not work as expected. Replacing this with

               case "$(read yesno; echo $yesno)" in [Nn]*) exit 1 ;; esac

would work as intended, as Mikael has pointed out.
  Wouldn't it be more elegant to

     case "$(head -n 1)" in [Nn]*) exit 1 ;; esac
Only if head is a built-in, otherwise you fork needlessly.  Not that
this is a performance critical part, but I wouldn't call it "elegant".

What's wrong with the following variant, already used a few lines up in
the file?

      read yesno
      case "$yesno" in [Nn]*) exit 1 ;; esac
That's the right way to spell it.  Sorry, I must have been too tired
when I did this.

I sent a patch to fix that way already

Cheers.
-- 
Francis
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help