Agent skill

bash-52-features

Bash 5.2 release features and improvements with practical examples. Use when working with Bash 5.2 features, variable handling enhancements, readline improvements, or when user asks about Bash 5.2 changes, new features, or version-specific capabilities.

Stars 33
Forks 4

Install this agent skill to your Project

npx add-skill https://github.com/Jamie-BitFlight/claude_skills/tree/main/plugins/bash-development/skills/bash-52-features

SKILL.md

Bash 5.2 Features and Improvements

Released in September 2022, Bash 5.2 brought enhancements to variable handling, readline integration, array support, and numerous bug fixes.

Variable Handling Enhancements

Improved Readonly and Unset Variable Behavior

Better error messages and more consistent behavior:

bash
# More informative error messages for readonly variables
readonly CONFIG_PATH="/etc/app/config"

# Attempting to modify generates clearer error
CONFIG_PATH="/tmp/config"  # bash: CONFIG_PATH: readonly variable

# Better handling of unset variables with set -u
set -u

# Checking before use is now more reliable
if [[ -n "${OPTIONAL_VAR:-}" ]]; then
    echo "Variable is set: ${OPTIONAL_VAR}"
else
    echo "Variable is not set"
fi

# Practical example: Configuration validation
validate_config() {
    local -a required_vars=("DATABASE_URL" "API_KEY" "LOG_DIR")
    local var

    for var in "${required_vars[@]}"; do
        if [[ -z "${!var:-}" ]]; then
            printf 'Error: Required variable %s is not set\n' "${var}" >&2
            return 1
        fi
    done

    echo "All required configuration variables are set"
}

export DATABASE_URL="postgres://localhost/db"
export API_KEY="secret123"
export LOG_DIR="/var/log/app"

validate_config

Nameref Improvements

Enhanced reference variable handling.

Code examples

Readline 8.2 Integration

Significant improvements to command-line editing:

Enhanced Completion and History

bash
# Better completion behavior in ~/.inputrc
# Skip completions for invisible characters
set skip-completed-text on

# Enhanced history search
# Cycle through history with prefix matching
bind '"\e[A": history-search-backward'  # Up arrow
bind '"\e[B": history-search-forward'   # Down arrow

# Improved completion coloring
set colored-stats on
set colored-completion-prefix on

# Better handling of long completions
set completion-display-width 0  # Use full terminal width

Input Handling Improvements

Code examples

Array Support Enhancements

Better Indexed Array Operations

bash
# Improved array slicing and expansion
array=(10 20 30 40 50 60 70 80 90)

# Slice notation is more reliable
echo "First 3: ${array[@]:0:3}"      # 10 20 30
echo "Last 3: ${array[@]: -3}"       # 70 80 90
echo "Middle: ${array[@]:3:3}"       # 40 50 60

# Practical example: Batch processing
process_batch() {
    local -a items=("$@")
    local batch_size=3
    local i

    for ((i = 0; i < ${#items[@]}; i += batch_size)); do
        local -a batch=("${items[@]:i:batch_size}")
        printf 'Processing batch %d: %s\n' \
            "$((i / batch_size + 1))" \
            "${batch[*]}"

        # Process batch items...
        for item in "${batch[@]}"; do
            echo "  Processing: ${item}"
        done
    done
}

files=(file1 file2 file3 file4 file5 file6 file7)
process_batch "${files[@]}"

Associative Array Improvements

Code examples

Parameter Expansion Enhancements

Improved Pattern Matching

Code examples

Enhanced Substring Operations

Code examples

Security Fixes

Bash 5.2 includes several security-related fixes:

  • Improved handling of environment variable inheritance
  • Better validation of variable names
  • Enhanced protection against command injection in certain contexts

Code examples

Performance Improvements

  • Faster variable expansion in complex scenarios
  • Optimized array operations for large arrays
  • Reduced memory footprint for associative arrays
  • Improved efficiency in pattern matching
bash
# Benchmark example showing improved performance
benchmark_arrays() {
    local -a array
    local i
    local start end

    start="${EPOCHREALTIME}"

    # Large array operations are faster in 5.2
    for ((i = 0; i < 10000; i++)); do
        array+=("item_${i}")
    done

    end="${EPOCHREALTIME}"

    printf 'Array population time: %.4f seconds\n' \
        "$(awk "BEGIN {print ${end} - ${start}}")"

    echo "Array size: ${#array[@]}"
}

benchmark_arrays

Compatibility Notes

Upgrading from Bash 5.1

Generally backward compatible, but note:

  • Some edge cases in variable expansion have changed behavior
  • Error messages are more detailed (may affect scripts parsing stderr)
  • Readline behavior changes might affect interactive scripts

Version Check

bash
# Check for Bash 5.2 features
if [[ "${BASH_VERSINFO[0]}" -eq 5 ]] && [[ "${BASH_VERSINFO[1]}" -ge 2 ]]; then
    echo "Bash 5.2+ features available"
    # Use enhanced features
elif [[ "${BASH_VERSINFO[0]}" -ge 6 ]]; then
    echo "Bash 6.0+ detected"
else
    echo "Bash version too old for 5.2 features"
fi

Migration Tips

From Bash 5.1 to 5.2

Most scripts work without modification, but consider:

Code examples

References

Additional Resources

For broader Bash development patterns and best practices, see:

  • ../bash-development/SKILL.md - Core Bash development patterns
  • ../bash-51-features/SKILL.md - Bash 5.1 features

Expand your agent's capabilities with these related and highly-rated skills.

Jamie-BitFlight/claude_skills

ccc

This skill should be used when code search is needed (whether explicitly requested or as part of completing a task), when indexing the codebase after changes, or when the user asks about ccc, cocoindex-code, or the codebase index. Trigger phrases include 'search the codebase', 'find code related to', 'update the index', 'ccc', 'cocoindex-code'.

33 4
Explore
Jamie-BitFlight/claude_skills

agent-browser

Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.

33 4
Explore
Jamie-BitFlight/claude_skills

delegate

Quick delegation template for sub-agent prompts. Use when assigning work to a sub-agent, before invoking the Agent tool, or when preparing prompts for specialized agents. Provides the WHERE-WHAT-WHY framework. For comprehensive delegation guidance, activate the agent-orchestration how-to-delegate skill.

33 4
Explore
Jamie-BitFlight/claude_skills

swarm-spawning

Spawn agents and teammates in Claude Code swarms. Use when choosing between subagents vs teammates, selecting agent types (Explore, Plan, general-purpose, plugin agents), configuring spawn backends (in-process, tmux, iterm2), or setting environment variables for spawned agents.

33 4
Explore
Jamie-BitFlight/claude_skills

knowledge-explorer

Manage the research/ knowledge base (KB) of tool and library research entries. Use when browsing KB topics, adding new research entries, updating existing entries with dated revisions, fetching GitHub repo metadata into a draft KB entry, or migrating old-format entries to skill-spec frontmatter. Triggers on tasks like "what do we have on X", "add this to the KB", "update the KB entry for Y", "fetch github info for owner/repo", or "migrate old entries".

33 4
Explore
Jamie-BitFlight/claude_skills

design-anti-patterns

Enforce anti-AI UI design rules based on the Uncodixfy methodology. Use when generating HTML, CSS, React, Vue, Svelte, or any frontend UI code. Prevents "Codex UI" — the generic AI aesthetic of soft gradients, floating panels, oversized rounded corners, glassmorphism, hero sections in dashboards, and decorative copy. Applies constraints from Linear/Raycast/Stripe/GitHub design philosophy: functional, honest, human-designed interfaces. Triggers on: UI generation, dashboard building, frontend component creation, CSS styling, landing page design, or any task producing visual interface code.

33 4
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results