Created
April 30, 2024 19:47
-
-
Save zphixon/a2eabda22ae0947706d3ae995d6637e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git_wrap_r() { | |
git `echo $@ | cut -b 1 --complement` | |
} | |
git_wrap_l() { | |
letter=$1 | |
shift | |
git $letter$@ | |
} | |
bruh() { | |
echo -ne "`tput setaf 0``tput setab 1`bruh`tput sgr0`" | |
sleep 1 | |
echo -ne "\r" | |
eval $@ | |
} | |
alias sduo='bruh "sudo $@"' | |
alias gi='bruh "git_wrap_r $@"' | |
alias gitc='bruh "git_wrap_l c $@"' | |
alias gitd='bruh "git_wrap_l d $@"' | |
alias gitl='bruh "git_wrap_l l $@"' | |
alias gitp='bruh "git_wrap_l p $@"' | |
alias gits='bruh "git_wrap_l s $@"' | |
alias sl='bruh "ls $@"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gits tatus