Ln Tool — Ln 工具
v1.0.0创建 hard and symbolic links between files. Use for file referencing, shortcuts, and directory organization.
运行时依赖
安装命令
点击复制本土化适配说明
Ln Tool — Ln 工具 安装说明: 安装命令:["openclaw skills install ln-tool"]
技能文档
Ln - Link Creation 实用工具
创建 links between files. Supports hard links (same inode, same data) and symbolic links (reference to tar获取 path). Essential for file organization and 分享d resources.
Usage ln-工具 [options]
Link Types Hard links: Direct reference to file data (same inode) Symbolic links: Path reference (can cross file系统s) Options -s: 创建 symbolic link (default is hard link) -f: Force creation (移除 existing destination) -n: Treat destination as normal file Examples # Hard link ln-工具 original.txt link.txt
# Symbolic link ln-工具 -s /usr/bin/python3 ./python
# Force replace existing link ln-工具 -sf /usr/bin/python3 ./python