From 50a4d34887acbfcd2d0ba4e91e6e9a74afe1de59 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 28 Sep 2020 17:01:17 +0200 Subject: Added ls colors, python-help and gcl-xyz aliases --- .zsh_aliases | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '.zsh_aliases') diff --git a/.zsh_aliases b/.zsh_aliases index 9df6257..758229b 100644 --- a/.zsh_aliases +++ b/.zsh_aliases @@ -75,6 +75,10 @@ gpa() { git remote | xargs -I{} git push {} "$branch" } +gcl-xyz() { + git clone --recurse-submodules "git@cacharle.xyz:/srv/git/$1.git" +} + # lpass (lastpass-cli) alias lpassp='lpass show --password --clip' # put password in clipboard @@ -138,4 +142,8 @@ grep-kill() { ps aux | grep "$1" | tr -s ' ' | cut -d ' ' -f 2 | xargs kill } +python-help() { + python3 -c "import $1; help($1)" +} + alias filter-valgrind="sed -e 's/==[0-9]*==/==/' -e 's/0x[0-9A-F]*//'" -- cgit