diff options
author | Tyler Davis <tyler@gluecode.net> | 2024-02-09 18:34:02 +0000 |
---|---|---|
committer | Tyler Davis <tyler@gluecode.net> | 2024-02-09 18:34:02 +0000 |
commit | 0f04484527a44be3687b2ee30442f3f7e0c4ad5c (patch) | |
tree | adfd569b250723007561d383bedf42442774c118 /.profile | |
parent | b7b4864fe2cad1b71fe99c9c5dec915a77129640 (diff) | |
download | dotfiles-0f04484527a44be3687b2ee30442f3f7e0c4ad5c.tar.gz dotfiles-0f04484527a44be3687b2ee30442f3f7e0c4ad5c.zip |
sh: add gc_all alias
Diffstat (limited to '.profile')
-rw-r--r-- | .profile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -135,10 +135,13 @@ elif [ "$(command -v podman)" ]; then export DOCKER_HOST="unix:$XDG_RUNTIME_DIR/podman/podman.sock" fi + # Presrving these for future use #alias psc='ps xawf -eo pid,user,cgroup,args' #alias gdb='gdb -tui' +alias gc_all="find ~/.code -name \".git$\" | xargs -I {} -n 1 bash -c \"cd {}; echo {}; git gc --aggressive;\" " + #if [ "$TERM" = "tmux-256color" ]; then export TERM=xterm-256color; fi # == END TOOLS == |