Cygwin 访问 Windows UNC 映射驱动器
我经常需要对Windows网络驱动器进行一些文本处理。由于它们太多了,我几乎所有的驱动器号都被使用了(我认为 T 仍然可用)。
我需要做一些事情:
cd "\lonshr-cad\cad\Feeds\BondPricesNYClose\" 或 less "\lonshr-cad\cad\Feeds\BondPricesNYClose\BondPrices_display_16112011.txt"
但我的 Cygwin 显示检测到 MS-DOS sytle 路径。
有没有快速访问这些文件的方法?
I often need to do some text processing for windows network drive. Since there are so many of them I have almost all my drive letters are used (I think T is still available).
I something need to do:
cd "\lonshr-cad\cad\Feeds\BondPricesNYClose\" or
less "\lonshr-cad\cad\Feeds\BondPricesNYClose\BondPrices_display_16112011.txt"
but my Cygwin shows that the MS-DOS sytle path detected.
Is there a quick way to access these file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用普通斜杠“/”或使用单引号而不是双引号。如果要使用绝对路径,请使用 /cygdrive/t 作为 T 驱动器
Try with the normal slash "/" or with single quotes instead of double quotes. If you want to use an absolute path then use /cygdrive/t for the T drive
只需使用正斜杠:
并且
您还可以创建可以
cd
到这些目录或不太
特定文件的别名。这样您就不必键入整个 UNC 路径(或复制/粘贴/更改斜杠)。Just use forward slashes:
and
You can also create aliases that can
cd
to these directories orless
specific files. That way you don't have to type the entire UNC path (or copy/paste/change slashes).