标签: linux
我想在每次执行“更改目录”命令时列出所有文件。
我已经尝试将其添加到我的〜/ .bashrc中:
function cdl { cd $1; ls;}
并在终端中运行它:
cdl directorytoswitchto
长话短说:我想在同一命令中执行cd和ls。
cd
ls
答案 0 :(得分:1)
要使用其他版本覆盖内置函数,通常会通过command调用原始函数。例如,
command
cd() { command cd "$@" && ls; }