Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Jun 2006 16:19:10 -0700 (PDT)
From:      Brian O'Shea <b_oshea@yahoo.com>
To:        sara lidgey <slidgey@yahoo.ca>, freebsd-questions@freebsd.org
Subject:   Re: multiple links with single ln command
Message-ID:  <20060627231910.52369.qmail@web39505.mail.mud.yahoo.com>
In-Reply-To: <20060627181422.6917.qmail@web35702.mail.mud.yahoo.com>

next in thread | previous in thread | raw e-mail | index | archive | help
It can be done with a shell for-loop:

$ mkdir a b c
$ for dir in a b ; do (cd $dir ; ln -s ../c clink) ; done

But this is technically not a single command, and it assumes that
you are using the Bourne Shell (/bin/sh) or a Bourne-compatible shell
(ksh, zsh, bash, etc.).  If you are a csh or tcsh user, may God help
you. (I mean look up the syntax in the appropriate man page.)

-brian

--- sara lidgey <slidgey@yahoo.ca> wrote:
> 
> Hi All,
> 
> I've read the man page for ln but can't find a way to do this.  I want to
> create multiple links to a single directory with one command.  Consider the
> following example.  I have a directory structure like this:
> test/a/
> test/b/
> test/c/
>  I want to create a symbolic link called "clink" in test/a/ and test/b/ which
> points to test/c/
> 
> The only way I know to do this is with two commands:
> ln -s test/c test/a/clink
> ln -s test/c test/b/clink
> 
> Can it be done with a single command?
> 
> thanks.  sorry if this is a no-brainer,
> S



__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20060627231910.52369.qmail>