From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from primenet.com.au (ns1.primenet.com.au [203.24.36.2]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id 7c2d2cd2 for ; Wed, 4 Sep 2019 23:47:37 +0000 (UTC) Received: (qmail 29998 invoked by alias); 4 Sep 2019 20:16:09 -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: List-Unsubscribe: X-Seq: 24206 Received: (qmail 6083 invoked by uid 1010); 4 Sep 2019 20:16:09 -0000 X-Qmail-Scanner-Diagnostics: from mail-lf1-f53.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.101.2/25559. spamassassin: 3.4.2. Clear:RC:0(209.85.167.53):SA:0(-1.9/5.0):. Processed in 2.618397 secs); 04 Sep 2019 20:16:09 -0000 X-Envelope-From: schaefer@brasslantern.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.167.53 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=LsUVa7SEO53eebk2s8MoHRbmkx+buhwXuo+JRSe3Imk=; b=WgN3YYL/5z9U687O8bgWw0chPav7Z8eaierI1i9CRtpv0qO2aEiZ7sekAzjMNFFnRp N2f7wdZLkc0IUBVUi9B/F7aQw7G4y7iZBrTfEQ4bsf8NoAF+527iW3xvBcZVo7aTmzvv WsriqQAkDCRoYO2A3rTG+/akoOjhd1ttJE39ntNfa1X8wvALhjLuIg/eYRIcHRFHl0t1 yH7GjAo8WrOgmzEoV4DUOSpyfpXB+SPfuIXjhkCfwAofpTSp3IirQ5g9tCHc+cK/SJHh Kl8zyKfKLHuFJDXwC1nJPxz+zHVjzPJfgdFKjXm+MMli/nM2d/sJpkBj8c+oJXEVGYdD uALQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=LsUVa7SEO53eebk2s8MoHRbmkx+buhwXuo+JRSe3Imk=; b=evK6TxctRxaGgLxPzez9UstDg4p0zn2Wg0Z24R0mFA7oWz6kd9IwrAYtZcriv/La2U lkPxCM4+QJUoXb087GWyQM45aTsgcbuNxZJEcTjMP5jpyi9Lr6gLLoBzcZ2WQl6SxUmd zQ6kU86DhE6j6SQDVF1cohmKHz//qjqwJ1NjH2l0jxxNm0UvQdwqXN2LSMexh5kUHBG2 vamQ+mISRFOU+01KK3vpRYaAop1R51fm319N6vkH/gl5Ra/2qIlcNpV4tGbk7S20ipmy hb+b/SM+P4jZ/FadvDWz3jGGM1yqDJM+3OXnEO+XOllJcR9sKpknIiydTuR7h8pn4bgM lKuA== X-Gm-Message-State: APjAAAX14VUuPUp1v+dyy4EZ6vk5+/0zoq+z9TfYfzfdwxouxfi6MCNi 6g+BOHzcfbYThstEICMOT4N0wNsEh+3v00NNfbUvBA== X-Google-Smtp-Source: APXvYqx0M6WNMsQPdpGoH1NWr9doV8N6lZa/ELJqL+olgF13QdjO7uBNijqRzoHt2VluIEZ3cvmZwZglZGmmM790wK8= X-Received: by 2002:ac2:53a3:: with SMTP id j3mr20240649lfh.155.1567628130700; Wed, 04 Sep 2019 13:15:30 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Bart Schaefer Date: Wed, 4 Sep 2019 13:15:19 -0700 Message-ID: Subject: Re: "operation not permitted" To: TJ Luoma Cc: Zsh MailingList Content-Type: text/plain; charset="UTF-8" On Wed, Sep 4, 2019 at 3:44 AM TJ Luoma wrote: > > I just did a clean install of macOS 13 (High Sierra) and have > encountered a few zsh shell scripts which say "operation not > permitted" when I try to run them > > zsh: operation not permitted: register-fluid.sh Either /usr/bin/env is having a problem, or something in the script is. What happens if you run "/usr/bin/env zsh" from the command line? Next would be to try putting "set -x" (or equivalently "setopt xtrace") at the top of the file, so you can see it running and identify the line with the problem.