What is the Unix command to create a hardlink to a directory in OS X?

前端 未结 14 1452
天涯浪人
天涯浪人 2020-12-02 05:32

How do you create a hardlink (as opposed to a symlink or a Mac OS alias) in OS X that points to a directory? I already know the command \"ln target destination\" but that on

14条回答
  •  青春惊慌失措
    2020-12-02 05:47

    In Linux you can use bind mount to simulate hard linking directories. Not sure about OSX

    sudo mount --bind /some/existing_real_contents /else/dummy_but_existing_directory
    sudo umount /else/dummy_but_existing_directory
    

提交回复
热议问题