From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2931 invoked by alias); 18 Mar 2014 03:40:52 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 18616 Received: (qmail 28140 invoked from network); 18 Mar 2014 03:40:45 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 X-Authority-Analysis: v=2.1 cv=Xr3DZz19 c=1 sm=1 tr=0 a=NEatVCJVkJZzojdqpkm12A==:117 a=NEatVCJVkJZzojdqpkm12A==:17 a=HIA4oEAs-AEA:10 a=8nJEP1OIZ-IA:10 a=6bfg5isnqMJnOE1silEA:9 a=wPNLvfGTeEIA:10 a=DR94upxlqLsA:10 a=AdBj-7a2f38A:10 Message-id: <5327B941.3060605@eastlink.ca> Date: Mon, 17 Mar 2014 20:10:57 -0700 From: Ray Andrews User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20131103 Icedove/17.0.10 MIME-version: 1.0 To: zsh-users@zsh.org Subject: set -F kills read -t References: <20131202142614.GA27697@trustfood.org> <131202075840.ZM3182@torch.brasslantern.com> <140316122727.ZM11132@torch.brasslantern.com> <140316131323.ZM11227@torch.brasslantern.com> In-reply-to: <140316131323.ZM11227@torch.brasslantern.com> Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7bit All: I'm trying to get some functions to accept piped input: func () { ... read -t input echo "$input to a summer's day?" ... } $ echo "Shall I compare thee" | func Shall I compare thee to a summer's day? ... All good. However if 'set -F' is active before 'func' is called or even it it's set just before the 'read -t input' then nothing is readed. Why is that? I thought 'set -F' was just to prevent glob expansions. Can it be fixed? Tx.