Install
openclaw skills install @dinghaibin/cut-toolExtract specific fields or columns from text files using delimiter-based parsing. Use when you need to select columns from CSV, TSV, or delimited data.
openclaw skills install @dinghaibin/cut-toolExtract columns and fields from delimited text files by specifying delimiter and field position. Ideal for processing log files, CSV data, and structured text.
cut-tool -d ',' -f 1,3 data.csv
# Extract first and third columns from CSV
cut-tool -d ',' -f 1,3 data.csv
# Extract characters 1-10 from each line
cut-tool -c 1-10 file.txt
# Use tab as delimiter
cut-tool -f 2-4 file.tsv