From owner-svn-src-all@FreeBSD.ORG Fri Jan 23 12:01:24 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 787061065673; Fri, 23 Jan 2009 12:01:24 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 66FB78FC16; Fri, 23 Jan 2009 12:01:24 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NC1OUe042406; Fri, 23 Jan 2009 12:01:24 GMT (envelope-from keramida@svn.freebsd.org) Received: (from keramida@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NC1OaV042405; Fri, 23 Jan 2009 12:01:24 GMT (envelope-from keramida@svn.freebsd.org) Message-Id: <200901231201.n0NC1OaV042405@svn.freebsd.org> From: Giorgos Keramidas Date: Fri, 23 Jan 2009 12:01:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187630 - stable/7/bin/ln X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 23 Jan 2009 12:01:25 -0000 Author: keramida (doc committer) Date: Fri Jan 23 12:01:24 2009 New Revision: 187630 URL: http://svn.freebsd.org/changeset/base/187630 Log: MFC 187148 from /head Clean up a bit of confusing language and improve .Nd. PR: 47818 Modified: stable/7/bin/ln/ (props changed) stable/7/bin/ln/ln.1 Modified: stable/7/bin/ln/ln.1 ============================================================================== --- stable/7/bin/ln/ln.1 Fri Jan 23 11:58:24 2009 (r187629) +++ stable/7/bin/ln/ln.1 Fri Jan 23 12:01:24 2009 (r187630) @@ -38,7 +38,7 @@ .Sh NAME .Nm ln , .Nm link -.Nd make links +.Nd link files .Sh SYNOPSIS .Nm .Op Fl s Op Fl F @@ -57,8 +57,13 @@ .Sh DESCRIPTION The .Nm -utility creates a new directory entry (linked file) which has the -same modes as the original file. +utility creates a new directory entry (linked file) for the file name +specified by +.Ar target_file . +The +.Ar target_file +will be created with the same file modes as the +.Ar source_file . It is useful for maintaining multiple copies of a file in many places at once without using up storage for the .Dq copies ; @@ -148,7 +153,7 @@ links. A hard link to a file is indistinguishable from the original directory entry; any changes to a file are effectively independent of the name used to reference the file. -Hard links may not normally refer to directories and may not span file systems. +Directories may not be hardlinked, and hard links may not span file systems. .Pp A symbolic link contains the name of the file to which it is linked.