bash-linux

Provide Bash and Linux command patterns for system interaction and scripting.

Updated Feb 24, 2026
One-click install
npx skills add https://github.com/ofelixdev/cc-kit --skill bash-linux-ofelixdev
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bash-linux
Source: https://github.com/ofelixdev/cc-kit/tree/main/template/skills/bash-linux
Command: npx skills add https://github.com/ofelixdev/cc-kit --skill bash-linux-ofelixdev

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides essential patterns and commands for efficient and safe Bash scripting on Linux and macOS systems, reducing errors and improving productivity.

Core Features & Use Cases

  • Command Chaining & Piping: Understand operators like &&, ||, and | for complex command sequences.
  • File & Process Management: Quickly perform common tasks like finding files, searching content, and managing running processes.
  • Text Processing: Utilize powerful tools like grep, sed, and awk for data manipulation.
  • Use Case: When troubleshooting a web server issue, you can use this Skill's patterns to quickly find the process listening on a specific port, kill it if necessary, and then restart the server.

Quick Start

Use the bash-linux skill to find all files ending with '.log' in the current directory and its subdirectories.

Frequently Asked Questions about bash-linux

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I chain multiple terminal commands together in Linux?

Chain terminal commands in Linux using operators like &&, ||, and | to control execution sequences and pipe output between processes for efficient system interaction.

What is the best way to find and kill a process listening on a specific port?

Find and kill a process on a specific port using process management patterns to identify the process ID and terminate it, allowing you to safely restart your server.

How do I use grep and sed for text processing in Bash scripts?

Use grep and sed for text processing in Bash scripts to search content patterns and manipulate data streams directly within your terminal command sequences.

Can I use this Bash scripting approach on macOS as well as Linux?

Yes, this Bash scripting approach works on macOS as well as Linux, providing essential patterns and commands for efficient interaction across Unix-like systems.

How do I find all files ending with .log in a directory and subdirectories?

Find all files ending with .log in a directory and its subdirectories by applying the file management patterns to search recursively through the file system.

Does this include a script template with error handling for system operations?

Yes, it includes a robust script template with error handling and common usage examples to reduce errors and improve productivity during system operations and network tasks.