From 9011fbf41e510c575382df86c78e53ddb55a73aa Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Mon, 1 Sep 2025 07:22:24 +0200 Subject: [PATCH] feat(bash): add shorter alias for 'exit' --- .bash_aliases | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.bash_aliases b/.bash_aliases index 944e21d..45834a2 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -1,3 +1,5 @@ +# Shorter exit - I'm lazy +alias e="exit" # Change PHP CLI binary alias phpa="sudo update-alternatives --config php" # Kill all code-server processes. Sometimes it hangs on startup @@ -117,4 +119,4 @@ sshl () { local user="${1:-$(whoami)}" ssh -p 2222 "$user"@local.vlw.se -} \ No newline at end of file +}