X-Spam-Check-By: sourceware.org
To: cygwin@cygwin.com
From: Matthew Woehlke <mw_triad@users.sourceforge.net>
Subject:  Re: Bash-Scripting: any way to pre-initialize readline's edit buffer   with a user-defined string?
Date:  Thu, 01 Mar 2007 09:56:02 -0600
Lines: 31
Message-ID: <es6t2i$ru4$1@sea.gmane.org>
References:  <45E6EAA0.5090603@hima.com>
Mime-Version:  1.0
Content-Type:  text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding:  7bit
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.9) Gecko/20061206 Thunderbird/1.5.0.9 Mnenhy/0.7.4.0
In-Reply-To: <45E6EAA0.5090603@hima.com>
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

Sven Severus wrote:
> Hello,
> 
> a simple (i hope ;->) question for bash scripting experts:
> 
> I want to write a script, that interactivly prompts the user
> for a couple of input items. So my bash code looks like
> this:      read -er -p"ItemX: " ITEMX
> Most of the items have default values, and I would find it
> very user-friendly, if readline's edit buffer would be pre-
> initialized with this default value, instead of an empty string.
> Then the user just has to hit <return> to enter the default
> value, very comfortable.
> 
> Any idea how to achieve this?
> Thanks.

1. This has nothing to do with cygwin. You should be asking on the bash 
mailing list.

2. Try:

echo -n "Input [default]: "
read input
[ -z "$input" ] && input=default

...I do it all the time.

-- 
Matthew
Ngx iqct zgg dxei zodt gf ngxk iqfrl.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

