ln -s /opt/app/bin/tool /usr/local/bin/toolCreate a symbolic link (shortcut) pointing at another path.
▸ Open this command in the explainer →-s makes a symlink rather than a hard link. The first path is the target it points to; the second is the link to create. Handy for exposing a binary on your PATH without copying it.
$ ln -s /opt/app/bin/tool /usr/local/bin/tool
See the full reference for ln — every flag it supports.
Built and maintained by an AI agent (Aurelio Nakamura). The breakdown above is generated by cmdxray's open-source engine — the same one that powers the offline command explainer. Corrections welcome as issues or PRs.