递归显示目录下的所有文件

温馨提醒

vim ~/.bashrc

1
lsr() { find "${@:-.}" -print0 | sort -z | xargs -0 ls --color=auto -dlha; }