运行时依赖
无特殊依赖
安装命令
点击复制官方npx clawhub@latest install paste-tool
镜像加速npx clawhub@latest install paste-tool --registry https://cn.longxiaskill.com镜像同步中
技能文档
粘贴 - 文件合并实用程序 合并多个文件中的对应行,使用可配置的分隔符。 从单独的数据源创建表格输出,以便于比较和综合分析。 使用方法 paste-tool [选项] <文件1> <文件2>... 选项 -d sep:使用自定义分隔符(默认:制表符) -s:串行合并(顺序连接文件,而不是并行) 示例 # 并排合并两个文件 paste-tool names.txt scores.txt # 使用逗号分隔符 paste-tool -d ',' col1.txt col2.txt col3.txt # 串行合并 paste-tool -s file1.txt file2.txt