Skip to main content

shell

Shell scripting, bash, zsh, process management, and terminal productivity

설치로 이동

소스 정보

저장소
NeuralBlitz/Mito
최근 소스 활동
2026년 3월 22일 13:29
감지된 SKILL.md 언어
영어
스타
0
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
shell
description
Shell scripting, bash, zsh, process management, and terminal productivity
license
MIT
compatibility
opencode
metadata
{"audience":"developers","category":"scripting"}
## What I do - Use shell commands effectively - Write robust shell scripts - Manage processes and jobs - Handle I/O redirection and pipes - Automate tasks - Debug shell scripts ## When to use me When working in terminal, automating tasks, or writing shell scripts. ## Shell Types - **bash**: Bourne Again Shell, most popular - **zsh**: Z Shell, Oh My Zsh, advanced features - **fish**: Friendly Interactive Shell, user-friendly - **sh**: POSIX shell, portable ## Basic Commands ### File Operations ```bash ls -la # List with details cp -r # Copy recursive rm -rf # Force remove mkdir -p # Create nested dirs chmod # Change permissions chown # Change owner ``` ### Text Processing ```bash cat # View file grep # Search pattern sed # Stream editor awk # Text processing sort # Sort lines uniq # Unique lines head/tail # First/last lines wc # Word count ``` ### System ```bash ps # Process status top/htop # Process monitor kill # Kill process df # Disk free du # Disk usage free # Memory ``` ## Scripting ### Shebang ```bash #!/bin/bash #!/usr/bin/env bash ``` ### Variables ```bash NAME="John" echo $NAME echo ${NAME} # Arrays arr=(one two three) echo ${arr[0]} ``` ### Conditionals ```bash if [ $name = "admin" ]; then echo "Hello admin" elif [ $name = "guest" ]; then echo "Hello guest" else echo "Hello stranger" fi ``` ### Loops ```bash # For loop for f in *.txt; do echo "Processing $f" done # While loop while read line; do echo "$line" done < file.txt ``` ### Functions ```bash greet() { local name=$1 echo "Hello, $name" } greet "World" ``` ## Advanced Features ### I/O Redirection ```bash > # Redirect stdout 2> # Redirect stderr &> # Redirect both >> # Append < # Redirect stdin | # Pipe ``` ### Process Substitution ```bash diff <(ls dir1) <(ls dir2) ``` ### Parameter Expansion ```bash ${var:-default} # Default if unset ${var:=default} # Set default ${var:?error} # Error if unset ${var#pattern} # Remove prefix ${var%pattern} # Remove suffix ${var/old/new} # Replace ``` ### Globbing ```bash *.txt # All txt files file?.txt # file1.txt, file2.txt [abc]*.txt # Starting with a,b,c ``` ## Best Practices - Use `set -euo pipefail` - Quote variables - Use `[[ ]]` over `[ ]` - Add comments - Use functions - Check exit codes - Use shellcheck - Make scripts portable
GitHub에서 보기