命令行cd后自动执行ls

2020-01-28  本文已影响0人  yytester

在 ~/.zshrc里加入:

cdls() {
    cd "${1}";
    ls;
}
alias cd='cdls'

执行source ~/.zshrc

上一篇下一篇

猜你喜欢

热点阅读