You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.0 KiB

  1. symlinks
  2. ========
  3. **scan/change symbolic links**
  4. Symlinks is a simple tool that helps find and remedy problematic symbolic links on a system.
  5. Description
  6. -----------
  7. Symlinks scans directories for symbolic links, identifying dangling, relative, absolute, messy, and other_fs links. It can also change absolute links to relative within a given filesystem.
  8. Installation
  9. ------------
  10. ### Source:
  11. $ ./configure
  12. $ make
  13. $ make install
  14. Usage
  15. -----
  16. ### Scan:
  17. $ symlinks -r [path]
  18. ### Show all symlinks:
  19. $ symlinks -rv [path]
  20. ### Convert absolute symlink to relative:
  21. $ symlinks -rc [path]
  22. ### More options:
  23. $ symlinks -h
  24. Changes
  25. -------
  26. * v1.4-1
  27. Added Mac OS X compatibility.
  28. * v1.4
  29. Incorporate patches from Fedora.
  30. * v1.3
  31. More messy-link fixes, new -o flag for other_fs.
  32. * v1.2
  33. Added -s flag to shorten links with redundant path elements. Also includes code to remove excess slashes from paths.
  34. Credit
  35. ------
  36. Symlinks was created by Mark Lord.
  37. Minor modifications made by Jonathon Brandt Buckley.