Ultra-concise bash command patterns. Use when constructing shell commands or one-liners.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill bash-use --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Bash Use?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-bash-use-claude-skill-registry)More formats (shields.io, HTML) on the badges page.
---
name: bash-use
description: Ultra-concise bash command patterns. Use when constructing shell commands or one-liners.
---
# Bash Use Skill
Patterns for interactive bash commands, one-liners, and CLI usage.
---
## When to Use
- Constructing shell commands
- Writing one-liners
- Interactive CLI usage
- Command debugging or improvement
---
## Quick Reference
**Quote paths with spaces:**
```bash
cd "/path with spaces/dir"
```
**Relative paths with rm:**
```bash
rm -rf ./build # Not $HOME/...
```
**Chain commands:**
```bash
cmd1 && cmd2 && cmd3 # Stop on failure
cmd1; cmd2; cmd3 # Continue regardless
```
**Command substitution:**
```bash
result=$(command) # Not `command`
```
**Check command exists:**
```bash
command -v jq &>/dev/null || echo "not found"
```
**Output redirection:**
```bash
command 2>&1 # Stderr to stdout
command &>/dev/null # Suppress all
```
**Process substitution:**
```bash
diff <(cmd1) <(cmd2)
```
---
## Full Guidelines
**Read:** `~/.claude/skills/code-implement/resources/loqui/languages/bash/reference/commands.md`
Use Read tool to access (paths outside cwd require direct reads).
---
## Anti-Patterns Checklist
- ✘ Unquoted paths with spaces
- ✘ Absolute paths with `rm`
- ✘ Using `;` when `&&` is needed
- ✘ Backticks instead of `$()`
---
## Related Skills
- **code-implement**: Language-specific patterns (includes bash)
- **code-test**: TDD workflow
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!