Cygwin:映射目录


2

我想映射一个目录 c:\Animal\Cat/Cat 所以当我使用Cygwin时,只需输入 cd /Cat 从任何目录,它去 /c/Animal/Cat
我该怎么做?

我已经完成了 mount -c /,所以当我执行df命令时,我有以下内容:

Filesystem     1K-blocks Used      Available  Use% Mounted on  
C:/cygwin/bin  488384532 187949036 300435496  39% /usr/bin  
C:/cygwin/lib  488384532 187949036 300435496  39% /usr/lib  
C:/cygwin      488384532 187949036 300435496  39% /  
C:             488384532 187949036 300435496  39% /c  

Answers:


1

根据您希望如何解决这个问题,这里有两个建议:

  • 您可以为此目录创建符号链接:

    ln -s /source/directory/ /Cat

    您可以通过运行来测试它 ls /Cat

  • 您可以创建一个别名,只需使用a移动到目录 友好名称:

    cat >>.bashrc
    # Alias for changing to a desired directory
    alias Dog='cd /source/directory'

然后发出命令 source ~/.bashrc 或者退出并重新登录。然后,发布新的 Dog 别名会 cd 到你想要的目录。

在.bashrc中使用接近它们的友好名称时,最好避免使用别名系统命令(替换 以狗为例)。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.