dotfiles/bin/ls_vsc_cache
2020-11-22 09:38:00 +08:00

9 lines
228 B
Fish
Executable File

#!/usr/bin/env fish
set VSCP ~/.config/Code\ -\ OSS/User/workspaceStorage
echo $VSCP
for dir in (ls $VSCP)
echo (du -h -d 0 $VSCP/$dir) (jq '.folder // .configuration.external' $VSCP/$dir/workspace.json -r)
end | sort -hr