Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我做了一个别名lfwc来显示当前文件夹的文件数,我还想显示一个子文件夹的文件数,所以我做了以下内容:
alias wcdir="cd $1;lfwc;cd .."
它没有按预期工作。
由于别名不带参数,因此您必须使用函数:
wcdir() { cd "$1" lfwc cd .. }