🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Cat Tool

by @dinghaibin

Concatenate and display file contents to standard output.

Versionv1.0.0
Downloads278
TERMINAL
clawhub install cat-tool

πŸ“– About This Skill


name: cat-tool description: Concatenate and display file contents to standard output.

Cat Tool - File Display

Read and concatenate files, displaying contents to stdout.

Quick Start

cat-tool myfile.txt

Features

  • Display file contents
  • Concatenate multiple files
  • Line numbers (-n)
  • Squeeze blank lines (-s)
  • Examples

    cat-tool README.md
    cat-tool file1.txt file2.txt > combined.txt
    cat-tool -n script.py
    

    See Also

  • Related documentation: man cat (if available)
  • πŸ’‘ Examples

    cat-tool README.md
    cat-tool file1.txt file2.txt > combined.txt
    cat-tool -n script.py