From owner-svn-src-all@freebsd.org Tue May 3 22:28:20 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61131B2CA7E; Tue, 3 May 2016 22:28:20 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: from mail-oi0-f67.google.com (mail-oi0-f67.google.com [209.85.218.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 31D2911EF; Tue, 3 May 2016 22:28:19 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: by mail-oi0-f67.google.com with SMTP id d139so5041650oig.1; Tue, 03 May 2016 15:28:19 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:reply-to:in-reply-to:references :date:message-id:subject:from:to:cc; bh=7384b50Br17FcAeWbE8qZPiqPEuY8TKdS7+CMd5wJjw=; b=IN53RRGVeQffl3+9mlCtV8q4kGR8BW0FRh1lxHx8g6QrRFUmMfBgIhoYuiw9UsWxA3 CmgaUAVKILN4bXmuVjiRQ6v0PmSzD/d7msayxhIx6AgHmKV+Iug2kuUL/9JVKHofWz7j i1s7nRDdka5HCiEgBbRcszqXzi5G2C3vs2NR5aKzWPBykHds/Xud6Z3MsVbad+kVjry1 3Kdt/BNq0WZaoHCn7/BzXiQGPdIKqhJLzVC8AreRZTZg+kJfTZ1htipuwK/ewIkYqCw1 C2JQQfYo/ywZJ72l4Fj6eMWWhhjZoeGXx+C1VFyGKNSGGWceqp1R7aQcRxiv7/Hz0AwV lU9A== X-Gm-Message-State: AOPr4FX5AhKDsQnZerfXNDSHCayKhKpX2zwJPmNcAUz+oXF0THo/BwRCgl0cgSwCJLNGOQ== X-Received: by 10.202.97.69 with SMTP id v66mr2341147oib.172.1462314493807; Tue, 03 May 2016 15:28:13 -0700 (PDT) Received: from mail-oi0-f44.google.com (mail-oi0-f44.google.com. [209.85.218.44]) by smtp.gmail.com with ESMTPSA id dl17sm279333obc.9.2016.05.03.15.28.13 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 03 May 2016 15:28:13 -0700 (PDT) Received: by mail-oi0-f44.google.com with SMTP id x19so44677269oix.2; Tue, 03 May 2016 15:28:13 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.202.215.86 with SMTP id o83mr2431061oig.55.1462314493281; Tue, 03 May 2016 15:28:13 -0700 (PDT) Reply-To: cem@FreeBSD.org Received: by 10.157.6.111 with HTTP; Tue, 3 May 2016 15:28:13 -0700 (PDT) In-Reply-To: <20160503215348.GC1369@FreeBSD.org> References: <201604130030.u3D0UggB007871@repo.freebsd.org> <20160503215348.GC1369@FreeBSD.org> Date: Tue, 3 May 2016 15:28:13 -0700 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r297897 - in head/usr.bin: . resizewin From: Conrad Meyer To: Gleb Smirnoff Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, darius@dons.net.au Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2016 22:28:20 -0000 On Tue, May 3, 2016 at 2:53 PM, Gleb Smirnoff wrote: > On Tue, Apr 12, 2016 at 05:42:54PM -0700, Conrad Meyer wrote: > C> On Tue, Apr 12, 2016 at 5:30 PM, Conrad E. Meyer wrote: > C> > Log: > C> > Add a small tool, resizewin(1), to query terminal for window size > C> > C> Whoops. The commit message should have included this blurb from the > C> phabricator review: > C> > C> This tool is a smaller, less featured version of resize from the xterm port. > C> > C> It's very useful when accessing systems via serial console that > C> don't run X (e.g. dev boxes). > > Are there any good reasons not to call it resize then? Those who have > xterm installed would have it overriden with /usr/local/bin/resize. Hi, I don't think it's a good idea to name different binaries the same thing and rely on PATH ordering to pick the right one. And it would introduce a conflict for LOCALBASE=/usr. Best, Conrad