dotfiles

dotfiles
git clone git://git.wimdupont.com/dotfiles.git
Log | Files | Refs | README | LICENSE

commit a677d0b4439d9886d1f1cbb6b8d85744c2006088
parent 19aa81dd7e181919e49f55caa983244c9c1b6e41
Author: Wim Dupont <wim@wimdupont.com>
Date:   Mon, 22 Jul 2024 23:07:39 +0200

fixed cex cmd

Diffstat:
M.bashrc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.bashrc b/.bashrc @@ -106,7 +106,7 @@ function leak(){ function cex() { txt=$(mktemp) || exit 1 - command cex -f "$txt" && cd $(cat "$txt") + command cex -f "$txt" && cd "$(cat "$txt")" rm "$txt" }