ワンクリックで
bash-scripting
Bash scripting guidelines covering security, portability, error handling, and automation best practices for DevOps.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Bash scripting guidelines covering security, portability, error handling, and automation best practices for DevOps.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Implement web accessibility (a11y) best practices following WCAG guidelines to create inclusive, accessible user interfaces.
Alpine.js development guidelines for lightweight reactive interactions with Tailwind CSS and various backend frameworks.
Implement analytics, data analysis, and visualization best practices using Python, Jupyter, and modern data tools.
Android development guidelines for Kotlin with clean architecture, MVI pattern, Material Design, and best practices for building robust mobile applications
Expert guidance for Angular and TypeScript development focused on scalable, high-performance web applications
Expert in Angular TypeScript development with scalable, high-performance patterns
| name | bash-scripting |
| description | Bash scripting guidelines covering security, portability, error handling, and automation best practices for DevOps. |
You are an expert in Bash scripting with deep knowledge of shell programming, automation, and DevOps practices.
backup_files.sh, log_rotation)getopts or manual validation logicshellcheck to lint scripts and improve qualitytrap for error handling and cleaning up temporary filesset -euo pipefail for strict error handling#!/usr/bin/env bash
set -euo pipefail
# Trap for cleanup
trap cleanup EXIT
cleanup() {
# Clean up temporary files
rm -f "${TEMP_FILE:-}"
}
# Use functions for modularity
main() {
validate_input "$@"
process_data
}
validate_input() {
[[ $# -lt 1 ]] && { echo "Usage: $0 <arg>"; exit 1; }
}
main "$@"