From 3aefa2bb5c8a1a603bad855fa96642cafa258ba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=9F=E9=85=8C=20=E9=B5=AC=E5=85=84?= Date: Mon, 15 Aug 2022 21:21:53 +0800 Subject: [PATCH] Typo --- bash/rbashrc | 8 ++++---- bash/sources/16_keystore | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/bash/rbashrc b/bash/rbashrc index b9b9a95..efa83fe 100644 --- a/bash/rbashrc +++ b/bash/rbashrc @@ -16,9 +16,9 @@ RBASH_REPO="penguin/utils" RBASH_PATH="bash" RBASH_MERGED="$RBASH_SOURCES/merged" -RHOSTNAME="" -RDOMAIN="" -RCOLOR="" +RHOSTNAME="Penguins-Mac-Studio" +RDOMAIN="@local" +RCOLOR="4" if [ $RHOSTNAME == "" ]; then RHOSTNAME=$( hostname -s ) @@ -309,5 +309,5 @@ ___DEFAULT___ chmod 600 "$RBASH_CONFIG" fi -ource "$RBASH_CONFIG" +source "$RBASH_CONFIG" unset _RBASH_MERGE_START diff --git a/bash/sources/16_keystore b/bash/sources/16_keystore index d75ac69..712a8aa 100644 --- a/bash/sources/16_keystore +++ b/bash/sources/16_keystore @@ -30,6 +30,7 @@ function kstore { update) shift; kstore-update "$@" ;; search) shift; kstore-search $@ ;; secret) shift; kstore-secret $@ ;; + upload) shift; kstore-upload $@ ;; *) __func_head "add [key] [value|file|-] [prop, default: $_KSTORE_DEF_PROP]" __func_help "update [key] [value|file|-] [prop, default: $_KSTORE_DEF_PROP]" @@ -38,6 +39,7 @@ function kstore { __func_help "list" __func_help "search [key] [prop]" __func_help "secret ..." + __func_help "upload s3-compatible-provider-name" __func_help "query SQL" return 1 ;;