# shellcheck shell=bash disable=SC2154

(
    for fp in "$HOME/.bashrc" "$HOME/.bash_profile" "$HOME/.zshrc" "$HOME/.kshrc" "$HOME/.shinit" ; do
        [ -f "$fp" ] || continue
        boot:info "Clearing startup x-cmd in $fp"
        ___x_cmd rat_ "$fp" || break
        printf "%s" "$x_" | command grep -v 'boot up x-cmd' > "$fp"
    done

    boot:info "boot clear SUCCESS";
)
