scan
read.table
readLines
readRDS
CASE WHEN
fcase
:=
.()
.Rprofile
.Renviron
Makevars
当前目录下各文件夹的大小, `-h` 表示人类(相对于机器来说)可读的方式显示,如 Kb、Mb、Gb,`-d` 表示目录深度 `du --human-readable --max-depth=1 ./` ```bash du -h -d 1 ./ ``` ```bash # 对当前目录下的文件/夹 按大小排序 du -sh * | sort -nr ```