select
Select specific lines in a text file for overwriting operations. Specify start and end line numbers to extract and modify targeted sections efficiently.
Instructions
Select lines from for subsequent overwrite operation.
Args: start (int): Start line number (1-based) end (int): End line number (1-based)
Returns: dict: status, lines, start, end, id, line_count, message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | Yes | ||
start | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end": {
"title": "End",
"type": "integer"
},
"start": {
"title": "Start",
"type": "integer"
}
},
"required": [
"start",
"end"
],
"type": "object"
}