From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-x12e.google.com (mail-lf1-x12e.google.com [IPv6:2a00:1450:4864:20::12e]) by sourceware.org (Postfix) with ESMTPS id BBBB6382FE59 for ; Wed, 1 Jun 2022 12:33:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BBBB6382FE59 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-lf1-x12e.google.com with SMTP id l30so2512702lfj.3 for ; Wed, 01 Jun 2022 05:33:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:from:date:message-id:subject:to; bh=5aO0hItuVMUU47s/6S/WoVzJK6J84OAVGteAwKwUrPQ=; b=OvkfgZJ6VHieCiWHXG8jVjXlSuzznqjq7MkAnf88H6bv9zEkqpUswf5TlW5csq+dDn 3phsZoiDX/lkY+HqxwXJnmzQtR4gdb+Dt7AorHXqLDmhI/DH/xpgZJi2xVrLiX94E5Qj IryT5HCZdcbSfxUhWR6sfih7e9UQ+4RHgjgf0r6fdn05plSmbgjxTWnzMLB8+IXhX46p JiO4HVmCfs3n0eE/iEt/y8Sh4/TtvbwSEBvECU8CXkQ80Xzqz7kAm/lVqRX1Qmypi/vC ru4LsvELpE7GRVxUGKauY3f3z9bhhVyGptlZgcCNyjddnCNjThhDjIvIdSb/CYmsJzAR 21Rg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=5aO0hItuVMUU47s/6S/WoVzJK6J84OAVGteAwKwUrPQ=; b=Q1rcP7UwiX9+trMklGoODis1HCAzfzf24dQAuKo0V5rUIi2gX5//iXN6AjS1XarneD IKCCmheDI01M74LFdoiJkI3+v5QkanjiT2oC3oYsS1uaPNXH5Q8Xad+2ao1FUNBatEcl ZwqCIA3thCQwkWfJoHKKsYRDSI10DZy7oGifSbxonrR7y0tnANeDqni4ZaSD2nnqaGs1 gG+2XNFZFUaFlEwROARN4u5wyC9G5xpMTgVeSHsWnkpuqE4tGMcp8SpNRLxfIMmFd+H+ i+QZRdAQGkb+fafe9z4ueCWhxre/fn5zt1vCTawB2uaGLeBS+cZP76lOSBeSxHDxNorN T47Q== X-Gm-Message-State: AOAM531bEIu+zvHa2vBv+/fcRDns2GNbJuyMD/xdM9UUxkJ0D4xx9kgy 6Ff/7BsfEmx6RiGH8wrBdBbu5xaBPWtJgh0jbquGJbkfLF8bHw== X-Google-Smtp-Source: ABdhPJzZVWivRR9xVhB5/8EnHZbJE/C3bfg4YOjn1+IbOUDdqwB5PSLeYam9V3Rv1mi7ya8cwjkPEV/ORXElWyES5nY= X-Received: by 2002:a05:6512:1681:b0:477:a451:131a with SMTP id bu1-20020a056512168100b00477a451131amr45578553lfb.318.1654086826940; Wed, 01 Jun 2022 05:33:46 -0700 (PDT) MIME-Version: 1.0 From: =?UTF-8?Q?Daniel_Jeli=C5=84ski?= Date: Wed, 1 Jun 2022 14:33:35 +0200 Message-ID: Subject: shebang env sh stopped working with coreutils-8.32-1 To: cygwin@cygwin.com Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=1.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, KAM_NUMSUBJECT, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jun 2022 12:33:50 -0000 Hi all, As the title says. To reproduce: - create a file (test.sh) with the following contents: #!/usr/bin/env sh echo success - make it executable (chmod a+x test.sh) - execute (./test.sh) With coreutils-8.26-2 the script prints "success". With coreutils-8.32-1 and 9.1-1 nothing happens. Regards, Daniel