diff options
author | Hsieh Chin Fan <typebrook@gmail.com> | 2022-03-30 10:41:25 +0800 |
---|---|---|
committer | Hsieh Chin Fan <typebrook@gmail.com> | 2022-03-30 10:41:25 +0800 |
commit | efd882787f4f5b5accd8ff6cfb4068608ea545d4 (patch) | |
tree | ff4939f281c918320c63af2ba13794518e143c1e /alias | |
parent | bb167c51b7b9570bed9ee99866319c091815bb99 (diff) |
update
Diffstat (limited to 'alias')
-rw-r--r-- | alias | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -54,7 +54,10 @@ alias s='sudo systemctl' | |||
54 | alias j='sudo journalctl -xe' | 54 | alias j='sudo journalctl -xe' |
55 | alias m='mutt' | 55 | alias m='mutt' |
56 | alias ju='sudo journalctl -u' | 56 | alias ju='sudo journalctl -u' |
57 | alias path="echo $PATH" | 57 | # Should not use alias, because $PATH is not initialized |
58 | path() { | ||
59 | echo $PATH | ||
60 | } | ||
58 | alias fd="echo /proc/$$/fd; ls -l /proc/$$/fd" | 61 | alias fd="echo /proc/$$/fd; ls -l /proc/$$/fd" |
59 | alias src="source $HOME/.$(basename $SHELL)rc" | 62 | alias src="source $HOME/.$(basename $SHELL)rc" |
60 | alias ll='ls -alh' | 63 | alias ll='ls -alh' |