We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 093a386 commit aa20a63Copy full SHA for aa20a63
roles/02-setup-home/files/bash/.bash_profile
@@ -11,6 +11,14 @@ export ANSIBLE_NOCOWS=1
11
#export VAGRANT_DEFAULT_PROVIDER=libvirt
12
13
alias ll='ls -lha'
14
+alias dig='dig +noall +answer +ttlunits'
15
+
16
+function git_prune() {
17
+ git fetch -p
18
+ for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); do
19
+ git branch -D $branch;
20
+ done;
21
+}
22
23
# kubernetes helpers
24
alias kafkapod='kubectl run --generator=run-pod/v1 kafkacat --rm -i --tty --namespace default --image confluentinc/cp-kafkacat --command -- bash'
0 commit comments