将cd';复制到目录并列出内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将cd';复制到目录并列出内容相关的知识,希望对你有一定的参考价值。
for .bashrc, a function that cd's to a directory and lists the contents it takes ls arguments and a directory. for example, cl goes to home dir and lists contents. cl -l goes to ~/ and long lists contents. and cl -lrt public_html shows the contents of public_html in long list reverse time order.
function cl () { case $1 in -*) local o=$1; shift;; esac cd $* && ls $o }
以上是关于将cd';复制到目录并列出内容的主要内容,如果未能解决你的问题,请参考以下文章