सीलिंक आमतौर पर /usr/local/
और के रूप में परिभाषित किया गया है brew --prefix
। यह देखने के लिए कि एप्लिकेशन को ( wget
उदाहरण के रूप में उपयोग करते हुए ) सहानुभूति है ,
$ brew link wget --dry-run
Warning: Already linked: /usr/local/Cellar/wget/1.16.1
To relink: brew unlink wget && brew link wget
brew
मैन पेज के अनुसार :
If --dry-run or -n is passed, Homebrew will list all files which would be linked or which would be deleted by brew link --overwrite, but will not actually link or delete any files.
यह देखने के लिए कि सभी फाइलें कहां स्थित हैं, इस list [formula] --verbose
तरह के विकल्प का उपयोग करें
$ brew list wget --verbose
/usr/local/Cellar/wget/1.16.1/AUTHORS
/usr/local/Cellar/wget/1.16.1/bin/wget
/usr/local/Cellar/wget/1.16.1/ChangeLog
/usr/local/Cellar/wget/1.16.1/COPYING
/usr/local/Cellar/wget/1.16.1/INSTALL_RECEIPT.json
/usr/local/Cellar/wget/1.16.1/NEWS
/usr/local/Cellar/wget/1.16.1/README
/usr/local/Cellar/wget/1.16.1/share/info/wget.info
/usr/local/Cellar/wget/1.16.1/share/man/man1/wget.1
--dry-run
होगा, या काढ़ा "पहले से ही लिंक" के साथ शिकायत करेगा।