运行时依赖
无特殊依赖
安装命令
点击复制官方npx clawhub@latest install reverse-tool
镜像加速npx clawhub@latest install reverse-tool --registry https://cn.longxiaskill.com✓ 镜像可用
技能文档
Reverse - 文本反转工具 反转文本行或每行内的字符顺序。支持行级反转(末行在前)和行内字符级反转。
用法 reverse-tool [选项] <文件>
选项 -c:反转每行内的字符(而非行序) -w:反转每行内的单词顺序
示例 # 反转行序 reverse-tool file.txt
# 反转每行字符 reverse-tool -c palindrome.txt
# 管道输入 echo "hello world" | reverse-tool -c