chdir
til at skrive absolut sti til det valgte katalog
I tcsh tilføj f.eks. i ~/.login :
alias chdir 'cd \!*; echo $cwd'I bash opstartsfil, f.eks. ~/.bash_profile :
function chdir () { cd $1 echo $PWD }I øvrigt er chdir normalt et synonym for cd i tcsh, medens chdir findes ikke bash . Ovenstående vil dog redefinere chdir .
|