Help for this page

Select Code to Download


  1. or download this
    mkdir -p /tmp/bar /tmp/foo
    touch /tmp/foo/one
    ln -fns /tmp/bar /tmp/foo/quz
    ln -fns ../foo/quz /tmp/bar/baz
    ln -fns ../foo/one /tmp/bar/two
    
  2. or download this
    #!/usr/bin/env perl
    use warnings;
    ...
    ln -snf ../foo/one /tmp/bar/two
    ln -snf ../foo/quz /tmp/bar/baz
    ln -snf ../foo/one /tmp/bar/baz/two