首页 > TAG信息列表 > useage

V-FOR useage method & Question of V-MODEL

V-FOR useage method 0. Origin The work content needs to recurse the Object to build the dialog about options of this object. And I dont know how to do, feel so sad. But, after I told my group leader about this question, he decided to make me out and do ot

如何快速新建sql的demo环境?

脚本如下 #!/usr/bin/env bash [[ -n $DEBUG ]] && set -x set -eou pipefail useage(){ cat <<HELP USAGE: sqldemo.sh HELP } exit_err() { echo >&2 "${1}" exit 1 } if [ $# -lt 0 ];then useage exit 1 fi DEMODIR=$

如何强制删除k8s中的残留namespace?

脚本如下: #!/bin/bash set -e useage(){ echo "useage:" echo " delns.sh NAMESPACE" } if [ $# -lt 1 ];then useage exit fi NAMESPACE=$1 JSONFILE=${NAMESPACE}.json kubectl get ns "${NAMESPACE}" -o json > "$