使用 Ruby 跟随符号链接链
Follow a chain of symlinks using Ruby
在查看 this issue 时,我发现所提供的解决方案并未遵循 symlinks/regular 链接链。
我如何使用 Ruby 做到这一点?
你可以试试:
require 'pathname'
Pathname.new("/path/to/symlink").realpath.to_s
在查看 this issue 时,我发现所提供的解决方案并未遵循 symlinks/regular 链接链。
我如何使用 Ruby 做到这一点?
你可以试试:
require 'pathname'
Pathname.new("/path/to/symlink").realpath.to_s