Read from stdin and write to both stdout and files. Use for saving pipe output while still displaying it on screen.
Scanned 9/10/2026
Install to Claude Code
npx -y skills add luokai0/ai-agent-skills-by-luo-kai --skill tee-tool --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Tee Tool?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/luokai0-tee-tool)More formats (shields.io, HTML) on the badges page.
---
name: tee-tool
description: Read from stdin and write to both stdout and files. Use for saving pipe output while still displaying it on screen.
---
# Tee - I/O Multiplexer
Read standard input and write to both standard output and one or more files simultaneously. Useful for logging command output while monitoring progress.
## Usage
```bash
command | tee-tool [options] <file...>
```
## Options
- `-a`: Append to files instead of overwriting
- `-i`: Ignore interrupt signals
## Examples
```bash
echo "data" | tee-tool output.txt
ls -la | tee-tool -a log.txt
make 2>&1 | tee-tool build.log
```Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!