Skip to content

Commit aa20a63

Browse files
authored
feat: add dig alias and git prune
1 parent 093a386 commit aa20a63

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

roles/02-setup-home/files/bash/.bash_profile

+8
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ export ANSIBLE_NOCOWS=1
1111
#export VAGRANT_DEFAULT_PROVIDER=libvirt
1212

1313
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+
}
1422

1523
# kubernetes helpers
1624
alias kafkapod='kubectl run --generator=run-pod/v1 kafkacat --rm -i --tty --namespace default --image confluentinc/cp-kafkacat --command -- bash'

0 commit comments

Comments
 (0)