From owner-freebsd-hackers@FreeBSD.ORG Mon May 27 19:42:39 2013 Return-Path: Delivered-To: hackers@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 13C86F43 for ; Mon, 27 May 2013 19:42:39 +0000 (UTC) (envelope-from rank1seeker@gmail.com) Received: from mail-ea0-x236.google.com (mail-ea0-x236.google.com [IPv6:2a00:1450:4013:c01::236]) by mx1.freebsd.org (Postfix) with ESMTP id A4C45877 for ; Mon, 27 May 2013 19:42:38 +0000 (UTC) Received: by mail-ea0-f182.google.com with SMTP id r16so4124638ead.41 for ; Mon, 27 May 2013 12:42:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:from:to:subject:date:content-type :content-transfer-encoding:x-mailer; bh=N3abaX84KS/CaIurlyjXvlAzLVxkjL+5o6hjhUqtn1Q=; b=PkJG1dIasT6wXCvQ/arPNwvIu5mtb1s2DWzzOl1lEI5RZTMx61AkyoDURwgn26lt1W U5GPKK61fKPQeadVZCylbqABDcIn/xn2kXdekujhPoM8bs/cyyLToLO5tXxBaPYX7UqF n3rlZlynN7jEdfCG1L+lsrJ3XbPr236JEYmTI4qZqXwzcucSu1bumRFqg/gQEK8fdDfA BPt+LSLiGgR4MsNOUXbb5MTnUC5F2BYiIbl6aGkKReTA/0VVcqu1ZfHRchOfubrK3i/m 5vaC1lAov3Q2BPIXnxiMsxgT7fayLpY7mO/0B6buXMn6Ck8iXuKDg8hAE3/79Gin9K7t Y6Bw== X-Received: by 10.14.181.131 with SMTP id l3mr54754651eem.16.1369683756812; Mon, 27 May 2013 12:42:36 -0700 (PDT) Received: from DOMYPC ([82.193.208.225]) by mx.google.com with ESMTPSA id a5sm43526853ees.6.2013.05.27.12.42.35 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 27 May 2013 12:42:35 -0700 (PDT) Message-ID: <20130527.194235.693.1@DOMY-PC> From: rank1seeker@gmail.com To: hackers@freebsd.org Subject: /bin/sh => STDIN & functions, var scope messing Date: Mon, 27 May 2013 21:42:35 +0200 Content-Type: text/plain; charset="Windows-1250" Content-Transfer-Encoding: quoted-printable X-Mailer: POP Peeper (3.8.1.0) X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 May 2013 19:42:39 -0000 9.1-RELEASE-p3=0D=0A---------------=0D=0A#!/bin/sh=0D=0A=0D=0Ash_f = ()=0D=0A{=0D=0A global_scope_var=3D7463457=0D=0A}=0D=0A=0D=0Ayes | = sh_f=0D=0Aecho "$global_scope_var"=0D=0A=0D=0Aecho '=0D=0ANow without = /usr/bin/yes (maybe it is STDIN issue, instead) = ?!?=0D=0A'=0D=0A=0D=0Ash_f=0D=0Aecho = "$global_scope_var"=0D=0A---------------=0D=0A=0D=0A=0D=0ADomagoj = Smol=E8i=E6