Search the documentation
8 pages for xargs.
Titles and paths first, then pages whose text carries it. Each row opens that page as this site last read it.
bash-tool
Claude Developer Platform · in the page
agents-and-tools/tool-use/bash-tool
…c -l *.csv && ls -lh *.csv` * Searching files: `find . -name "*.py" | xargs grep "pattern"` * Creating backups: `tar -czf backup.tar.gz ./data` ### System tasks * Checking resources: `df -h && free…
scripting
Claude Developer Platform · in the page
cli-sdks-libraries/cli/scripting
…int emits one bare ID per line, so standard tools such as `head` and `xargs` apply directly. Capture the first result, then pass it to a follow-up command: ```bash FIRST_AGENT=$(ant beta:agents list…
Claude Code changelog
Claude Code CLI · in the page
changelog
…away * Fixed worktree-isolated sessions refusing common Bash loops, xargs pipelines and launcher-wrapped commands that cannot reach the main checkout * Improved terminal resize and first-render pe…
Explore the .claude directory
Claude Code CLI · in the page
claude-directory
…type": "command", "command": "jq -r '.tool_input.file_path' | xargs npx prettier --write" }] }] } }`, docsLink: '/en/settings' }, { id: 'settings-local-…
Automate actions with hooks
Claude Code CLI · in the page
hooks-guide
…s": [{ "type": "command", "command": "jq -r '.tool_input.file_path' | xargs npx prettier --write" }] } ], "Notification": [ { "matcher": "",…
Configure permissions
Claude Code CLI · in the page
permissions
…, so `Bash(rm *)` in deny still matches `FOO=bar rm -rf tmp/`. Bare `xargs` is also stripped, so `Bash(grep *)` matches `xargs grep pattern`. Stripping applies only when `xargs` has no flags: an invo…
Create plugins
Claude Code CLI · in the page
plugins
…s": [{ "type": "command", "command": "jq -r '.tool_input.file_path' | xargs npm run lint:fix" }] } ] } } ``` </Step> <Step title="Test your migrated plugin"> L…
All settings
Claude Code CLI · in the page
settings-reference
…shapes, among others: * A command starting with `sudo`, `eval`, or `xargs` * A `cd`, `pushd`, or `popd`, wherever it appears in the call * A command substitution, a subshell, or a control-flow block…