% gwsm 8
gwsm - interact with config map and secret manager variables
gwsm
Usage:
gwsm [GLOBAL OPTIONS] command [COMMAND OPTIONS] [ARGUMENTS...]
| #!/bin/bash | |
| set +e | |
| bold="\e[1m" | |
| dim="\e[2m" | |
| underline="\e[4m" | |
| blink="\e[5m" | |
| reset="\e[0m" | |
| red="\e[31m" |
| package main | |
| type Heap[T any] struct { | |
| data []T | |
| compare func(a, b T) bool | |
| } | |
| func CreateHeap[T any](compare func(a, b T) bool) *Heap[T] { | |
| return &Heap[T]{compare: compare} | |
| } |
| .nh | |
| .TH gwsm 8 | |
| .SH NAME | |
| .PP | |
| gwsm \- interact with config map and secret manager variables | |
| .SH SYNOPSIS | |
| .PP |
| .nh | |
| .TH gwsm 8 | |
| .SH NAME | |
| .PP | |
| gwsm \- interact with config map and secret manager variables | |
| .SH SYNOPSIS | |
| .PP |
| ### | |
| # nvm auto detect | |
| find-up () { | |
| path=$(pwd) | |
| while [[ "$path" != "" && ! -e "$path/$1" ]]; do | |
| path=${path%/*} | |
| done | |
| echo "$path" | |
| } |
Action Oriented
Enjoys working hard; is action oriented and full of energy for the things he/she sees as challenging; not fearful of acting with a minimum of planning; seizes more opportunities than others.
Dealing With Ambiguity
Can effectively cope with change; can shift gears comfortably; can decide and act without having the total picture; isn t upset when things are up in the air; doesn't have to finish things before moving on; can comfortably handle risk and uncertainty.
| # m h dom mon dow command | |
| 0 * * * * /usr/sbin/es-dump | |
| 30 * * * * /usr/sbin/es-dump-s3-sync | |
| 45 0 * * * find /elasticsearch/backup/ -mtime +7 -delete |