| name | shell-tools |
| description | Production-grade shell tools - jq, xargs, parallel, pipelines |
| sasmp_version | 1.3.0 |
| bonded_agent | 07-shell-tools |
| bond_type | PRIMARY_BOND |
| version | 2.0.0 |
| difficulty | advanced |
| estimated_time | 6-8 hours |
Shell Tools Skill
Master jq, xargs, GNU parallel, and advanced pipelines
Learning Objectives
After completing this skill, you will be able to:
Prerequisites
- Strong Bash fundamentals
- Text processing basics
- Understanding of pipes
Core Concepts
1. jq Essentials
jq '.' file.json
jq '.key' file.json
jq '.array[0]' file.json
jq '.nested.key' file.json
jq '.[] | select(.active)'
jq '.[] | select(.count > 10)'
jq '.[] | {id, name}'
jq 'map(.price * .qty)'
jq -r '.[] | @csv'
jq -n --arg x "$VAR" '{value: $x}'
2. Xargs
echo "a b c" | xargs echo
find . -print0 | xargs -0 rm
cat list | xargs -n 1 process
cat list | xargs -n 10 process
cat list | xargs -P 4 -n 1 process
cat urls | xargs -I {} curl {}
3. GNU Parallel
parallel echo ::: a b c
parallel process :::: list.txt
parallel -j 4 process ::: *.txt
parallel --progress process ::: *.txt
parallel -j 4 --delay 0.5 \
'curl -s {} | jq .name' :::: urls.txt
4. Pipeline Utilities
sort file.txt
sort -n file.txt
sort -u file.txt
sort file | uniq -c
cut -d',' -f1,3 file.csv
paste file1.txt file2.txt
tr 'a-z' 'A-Z' < file
tr -d '\r' < dos.txt > unix.txt
Common Patterns
API Data Pipeline
curl -s 'https://api.example.com/users' |
jq -r '.[] | select(.active) | [.id, .email] | @csv' |
sort -t',' -k2 |
head -20
Parallel Processing
find . -name "*.log" |
parallel -j 4 gzip
cat ids.txt |
parallel -j 5 --delay 0.2 \
'curl -s "https://api.example.com/item/{}"'
Data Transformation
cat data.json |
jq -r '.items[] | "\(.id)\t\(.name)\t\(.price)"' |
column -t
Anti-Patterns
| Don't | Do | Why |
|---|
| Parse JSON with grep | Use jq | Proper parsing |
| Sequential when parallel | Use parallel | Speed |
cat | xargs | xargs < file | Efficiency |
Practice Exercises
- JSON Processor: Transform API response
- Batch Processor: Parallel file processing
- Log Analyzer: Complex log pipeline
- Data Migrator: Transform and load data
Troubleshooting
Common Errors
| Error | Cause | Fix |
|---|
jq: error | Invalid JSON | Validate with jq . |
xargs: arg too long | Too many args | Use -n |
parallel: not found | Not installed | apt install parallel |
Debug Techniques
jq '.' < input.json
command1 | tee /dev/stderr | command2
echo '{"a":1}' | jq '.a'
Performance Tips
LC_ALL=C sort file.txt
parallel -j $(nproc) process ::: *.txt
jq -c '.[]' large.json | while read -r line; do
done
Resources