]> git.phdru.name Git - dotfiles.git/commitdiff
.shellrc: Make some simple functions aliases
authorOleg Broytman <phd@phdru.name>
Tue, 2 Jul 2024 22:56:17 +0000 (01:56 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 10 Jul 2024 13:01:06 +0000 (16:01 +0300)
.shellrc

index 9f9242ae5e6a4d3d05448af6f06ceb2be68a222d..6194d4b2466a99f754ab5a90200c1c52d41f4c78 100644 (file)
--- a/.shellrc
+++ b/.shellrc
@@ -41,11 +41,11 @@ esac
 
 if test -n "$KSH_VERSION" -o -n "$FCEDIT"; then
     back() { cd - "$@"; }
-    j() { jobs; }
+    alias j=jobs
 fi
 
 # clear screen and history, logout
-chlo() { clear; cd; >$HISTFILE; unset HISTFILE; history -c; logout || exit; }
+alias clhlo='clear; cd; >$HISTFILE; unset HISTFILE; history -c; logout || exit'
 
 if [ -n "$STY" -a "$WINDOW" != 0 ]; then
     #unset MAILCHECK everywhere except for the 1st GNU screen window
@@ -209,4 +209,4 @@ if [ "$SHLVL" -eq 1 ] && which startx >/dev/null 2>&1; then
     X() { startx >> .Xserver.log 2>&1; cyr; /bin/rm -f .Xauthority; }
 fi
 
-x() { exit; }
+alias x=exit