From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wm1-f41.google.com ([209.85.128.41]) by ewsd; Tue Nov 13 12:09:04 EST 2018 Received: by mail-wm1-f41.google.com with SMTP id r11-v6so12695183wmb.2 for <9front@9front.org>; Tue, 13 Nov 2018 09:08:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:content-disposition; bh=FnuX57aUMjhJedNTXaNpJOe7lKauqGj7oqpbvgh3FUc=; b=KCBKJL9hTT+Djtp/c4IfDUi60EWrMmXtB2jY2Jhf5Mg2qmw6OqzyKx3YtQQdDgR5Vv 2q76rJfYuLD6e17FAmq3YJSSj2U/wGNJ7SIhDbSUsuDOzgTCZeCDRQi2767B9hikFV1r CH4cfvTF7Fn0ftMpM6QrsdJUKeImNrwR5YBIrKBRXl31dIPPVZtZTu8v9F0/FcaXomg/ 9UoltzZd/5GQdAvw1umgXzVB8FmqCbZjTPviwjaQ0OINxHjnS+cGKqqiPVwhBN+8mqgB X6Eq4pyGoOKlv9ZfMPR8fqCsmVLVsCAsrgmlO014z29FR2YyVbAasIhZreDbpYnkvuYo U6xQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id :content-disposition; bh=FnuX57aUMjhJedNTXaNpJOe7lKauqGj7oqpbvgh3FUc=; b=mF6D3j6XCKs+/q3M+TIhCQqVThDzakT5Vu41ROMrL5Zk5qXzarnW8aLLXTVyVd0z88 SdaJbotBrLSolSA076SNpBrtv7nROKxCHrLY6XRxyKJKGV+G1OfP4h5eA9S75hUA4UwZ 3F9Sb3mco0XPSu0erEVPdnBSXfPLTDNs7FGIA9+PLOwFBSUVrCrqY+WfnzR4ZuZFhFpm rOg+DH268xnXnyBSF6r+de5zFRdRQ8xzY2vRMwThRmTzCfNBFdMOkXpfEB5NR+bjZ93F /NnP5CIBUpKnYO4eL0H7TGJUYnCql2ja/l4bpaDJhWSNpjNKCAOyN8vWFgvoyJuzo1vO oggA== X-Gm-Message-State: AGRZ1gLEUG88Gi4gzu/ICOJIyTT9Ilntmhd6ILHjQfaHgWjxpYfLOSeZ ZhBNsXr+5+KP5SCBukyAftrbdRYo X-Google-Smtp-Source: AJdET5eqOC4JeKSRFYQd26Jnp+Hn9LGJEboyslGmjUZs5GS7tye0D9ktQ9Y7bS/5ll2dlJV6iJ8BNw== X-Received: by 2002:a1c:28c6:: with SMTP id o189-v6mr1602481wmo.89.1542128936619; Tue, 13 Nov 2018 09:08:56 -0800 (PST) Return-Path: Received: from master.localdomain (ip72-200-124-203.tc.ph.cox.net. [72.200.124.203]) by smtp.gmail.com with ESMTPSA id j8sm4978766wrt.40.2018.11.13.09.08.55 for <9front@9front.org> (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 13 Nov 2018 09:08:55 -0800 (PST) Date: Tue, 13 Nov 2018 10:08:51 -0700 From: Joe M To: 9front@9front.org Subject: sed bug? Message-ID: <20181113170851.GA5870@master> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: managed asynchronous high-performance-based cloud YAML scripting injection control Hello, I am not sure if this is correct behaviour: {echo test; echo test1; echo test2} | sed '1,/^test$/d' # has no output This works fine, it outputs test2 {echo test; echo test1; echo test2} | sed '0,/^test1$/d' Thanks