以下command在cshell中生效 在.cshrc中加入下面的語(yǔ)句: alias cd 'cd \!* ; ll'
注意*后面的空格,以及l(fā)l之前的空格 進(jìn)一步,可以同時(shí)打印出cd之后的path alias cd 'cd \!* ; ll; pwd'
如果執(zhí)行cd之后命令行顯示的目錄(用戶名后面緊跟著的)沒(méi)有變化的,可以試著再加入source alias cd 'cd \!* ; ll; pwd; so'
如果是在bash的環(huán)境,在.bashrc中加入: alias cd="cd $1; ll "
Note the leading space (" ") in the bash version, it prevents the result to be alias expanded again. So it prevents loops. bash另一種方法,在.bashrc中加入: cdls() { cd "${1}"; ls; } alias cd='cdls' PS: 以上方法在bashrc中似乎沒(méi)起作用,另附一種方法: cd () { builtin cd "$@" && ls; }
|