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
X() { startx >> .Xserver.log 2>&1; cyr; /bin/rm -f .Xauthority; }
fi
-x() { exit; }
+alias x=exit