用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ffsshhttiikk/opencode-agents-skills --skill bash命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | bash |
| description | Bash shell scripting for automation, system administration, and command-line productivity |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"scripting"} |
When automating tasks, building CLI tools, or managing systems.
#!/bin/bash
# Variables
name="World"
echo "Hello, $name!"
# Command substitution
current_date=$(date +%Y-%m-%d)
files=$(ls)
# Arrays
colors=("red" "green" "blue")
echo "${colors[0]}"
echo "${colors[@]}"
# Dictionaries (bash 4+)
declare -A config
config[host]="localhost"
config[port]="8080"
echo "${config[host]}"
# If statement
if [ "$name" == "admin" ]; then
echo "Welcome admin"
elif [ "$age" -ge 18 ]; then
echo "Adult"
else
echo "Minor"
fi
# File tests
if [ -f "$file" ]; then
echo "Regular file"
fi
if [ -d "$dir" ]; then
echo "Directory"
fi
if [ -z "$var" ]; then
echo "Empty"
fi
# String comparison
if [[ "$str" == *"pattern"* ]]; then
echo "Contains pattern"
fi
# For loop
for i in {1..5}; do
echo "Number: $i"
done
for file in *.txt; do
echo "Processing $file"
done
# While loop
while read line; do
echo "$line"
done < file.txt
# Iterate over array
for color in "${colors[@]}"; do
echo "$color"
done
function greet() {
local name="$1" # local variable
echo "Hello, $name!"
}
greet "World"
# Return value
function get_sum() {
local a=$1
local b=$2
echo $((a + b))
}
result=$(get_sum 5 10)
#!/bin/bash
# $@ = all arguments
# $# = argument count
# $0 = script name
# $1, $2, ... = arguments
while [[ $# -gt 0 ]]; do
case $1 in
-h|--help)
help=true
;;
-n|--name)
name="$2"
shift 2
;;
-v|--verbose)
verbose=true
shift
;;
*)
echo "Unknown: $1"
shift
;;
esac
done
set -e # Exit on error
set -u # Exit on undefined variable
set -o pipefail # Pipeline fails on error
# Trap errors
trap 'echo "Error on line $LINENO"' ERR
# Check command success
if ! command -v git &> /dev/null; then
echo "Git not found"
exit 1
fi
# Awk
awk -F',' '{print $1, $3}' file.csv
awk 'NR>1 {sum+=$2} END {print sum}' file.txt
# Sed
sed 's/old/new/g' file.txt
sed -i 's/old/new/g' file.txt # in-place
sed '/pattern/d' file.txt # delete lines with pattern
# Find
find . -name "*.txt" -type f
find . -mtime -7 # modified in last 7 days
find . -size +1M # larger than 1MB
# xargs
find . -name "*.log" -type f | xargs rm
find . -name "*.txt" | xargs -I {} mv {} ./backup/
# Check if command exists
command -v docker >/dev/null 2>&1 || { echo "Docker required"; exit 1; }
# Heredoc
cat << EOF > config.txt
name=$name
value=$value
EOF
# Parallel execution
cat hosts | xargs -P 10 -I {} ssh {} 'uptime'
# Progress bar
for i in {1..100}; do
echo -ne "Progress: $i%\r"
sleep 0.1
done