Loading .bashrc +11 −1 Original line number Diff line number Diff line Loading @@ -123,7 +123,7 @@ alias listen_tcp='nc -vlk 0.0.0.0' alias listen_udp='nc -uvlk 0.0.0.0' alias listen_unix='nc -Uvlk' alias tfa='terraform apply tfplan' alias tfvf='terraform validate && terraform fmt' alias tfvf='tfv && terraform fmt -diff' if ! command -v notify-send > /dev/null then Loading Loading @@ -174,6 +174,16 @@ tfi () { fi } tfv () { workspace="$(terraform workspace show)" if [ "$workspace" = "default" ] || [ ! -f "$workspace.tfvars" ] then terraform validate "$@" else terraform validate -var-file "$workspace.tfvars" "$@" fi } genpass () { bytes="${1:-32}" head --bytes="$bytes" /dev/urandom | base64 --wrap=0 Loading Loading
.bashrc +11 −1 Original line number Diff line number Diff line Loading @@ -123,7 +123,7 @@ alias listen_tcp='nc -vlk 0.0.0.0' alias listen_udp='nc -uvlk 0.0.0.0' alias listen_unix='nc -Uvlk' alias tfa='terraform apply tfplan' alias tfvf='terraform validate && terraform fmt' alias tfvf='tfv && terraform fmt -diff' if ! command -v notify-send > /dev/null then Loading Loading @@ -174,6 +174,16 @@ tfi () { fi } tfv () { workspace="$(terraform workspace show)" if [ "$workspace" = "default" ] || [ ! -f "$workspace.tfvars" ] then terraform validate "$@" else terraform validate -var-file "$workspace.tfvars" "$@" fi } genpass () { bytes="${1:-32}" head --bytes="$bytes" /dev/urandom | base64 --wrap=0 Loading