From owner-svn-src-all@freebsd.org Thu Nov 29 16:08:18 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 155891142513; Thu, 29 Nov 2018 16:08:18 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A8B8F728C3; Thu, 29 Nov 2018 16:08:17 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 854D51BC5E; Thu, 29 Nov 2018 16:08:17 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wATG8HlJ014273; Thu, 29 Nov 2018 16:08:17 GMT (envelope-from eugen@FreeBSD.org) Received: (from eugen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wATG8H8V014270; Thu, 29 Nov 2018 16:08:17 GMT (envelope-from eugen@FreeBSD.org) Message-Id: <201811291608.wATG8H8V014270@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eugen set sender to eugen@FreeBSD.org using -f From: Eugene Grosbein Date: Thu, 29 Nov 2018 16:08:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r341243 - in head: usr.bin usr.bin/trim usr.sbin usr.sbin/trim X-SVN-Group: head X-SVN-Commit-Author: eugen X-SVN-Commit-Paths: in head: usr.bin usr.bin/trim usr.sbin usr.sbin/trim X-SVN-Commit-Revision: 341243 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A8B8F728C3 X-Spamd-Result: default: False [0.83 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_SHORT(0.28)[0.276,0]; NEURAL_SPAM_MEDIUM(0.25)[0.247,0]; NEURAL_SPAM_LONG(0.31)[0.307,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 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: Thu, 29 Nov 2018 16:08:18 -0000 Author: eugen Date: Thu Nov 29 16:08:16 2018 New Revision: 341243 URL: https://svnweb.freebsd.org/changeset/base/341243 Log: Move trim(1) from usr.bin to usr.sbin to become trim(8). Requested by: se MFC after: 1 month Added: head/usr.sbin/trim/ - copied from r341242, head/usr.bin/trim/ Deleted: head/usr.bin/trim/ Modified: head/usr.bin/Makefile head/usr.sbin/Makefile Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Thu Nov 29 15:58:14 2018 (r341242) +++ head/usr.bin/Makefile Thu Nov 29 16:08:16 2018 (r341243) @@ -159,7 +159,6 @@ SUBDIR= alias \ touch \ tput \ tr \ - trim \ true \ truncate \ tset \ Modified: head/usr.sbin/Makefile ============================================================================== --- head/usr.sbin/Makefile Thu Nov 29 15:58:14 2018 (r341242) +++ head/usr.sbin/Makefile Thu Nov 29 16:08:16 2018 (r341243) @@ -91,6 +91,7 @@ SUBDIR= adduser \ tcpdrop \ tcpdump \ traceroute \ + trim \ trpt \ tzsetup \ ugidfw \