# 查看当前文件夹占用空间(linux)
du -h --max-depth=0
# macos
du -d 0
# 查看磁盘占用情况
df -h
地址:https://github.com/fatedier/frp/releases
curl -sqL "https://github.com/fatedier/frp/releases/download/v0.54.0/frp_0.54.0_linux_amd64.tar.gz" | tar zxvf -
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type DotPrefix<T extends string> = T extends '' ? '' : `.${T}`; | |
type KeyPaths<T> = (T extends object ? { [K in Exclude<keyof T, symbol>]: `${K}${DotPrefix<KeyPaths<T[K]>>}` }[Exclude<keyof T, symbol>] : '') extends infer D ? Extract<D, string> : never; |