bash-linux
✓Bash/Linux terminal patterns. Critical commands, piping, error handling, scripting. Use when working on macOS or Linux systems.
Installation
SKILL.md
| List all | ls -la | | Find files | find . -name ".js" -type f | | File content | cat file.txt | | First N lines | head -n 20 file.txt | | Last N lines | tail -n 20 file.txt | | Follow log | tail -f log.txt | | Search in files | grep -r "pattern" --include=".js" | | File size | du -sh | | Disk usage | df -h |
| List processes | ps aux | | Find by name | ps aux \| grep node | | Kill by PID | kill -9 | | Find port user | lsof -i :3000 | | Kill port | kill -9 $(lsof -t -i :3000) | | Background | npm run dev & | | Jobs | jobs -l | | Bring to front | fg %1 |
| grep | Search | grep -rn "TODO" src/ | | sed | Replace | sed -i 's/old/new/g' file.txt | | awk | Extract columns | awk '{print $1}' file.txt | | cut | Cut fields | cut -d',' -f1 data.csv | | sort | Sort lines | sort -u file.txt | | uniq | Unique lines | sort file.txt \| uniq -c | | wc | Count | wc -l file.txt |
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/vudovn/antigravity-kit --skill bash-linux- Source
- vudovn/antigravity-kit
- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is bash-linux?
Bash/Linux terminal patterns. Critical commands, piping, error handling, scripting. Use when working on macOS or Linux systems. Source: vudovn/antigravity-kit.
How do I install bash-linux?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/vudovn/antigravity-kit --skill bash-linux Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/vudovn/antigravity-kit
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-01