text_diff
Compare two text files to identify differences and save the result in a specified directory for easy analysis and document processing.
Instructions
Compare two text files and show differences
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file1Path | Yes | Path to the first text file | |
file2Path | Yes | Path to the second text file | |
outputDir | Yes | Directory where diff result should be saved |
Input Schema (JSON Schema)
{
"properties": {
"file1Path": {
"description": "Path to the first text file",
"type": "string"
},
"file2Path": {
"description": "Path to the second text file",
"type": "string"
},
"outputDir": {
"description": "Directory where diff result should be saved",
"type": "string"
}
},
"required": [
"file1Path",
"file2Path",
"outputDir"
],
"type": "object"
}