Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/weaming/itree
Find the biggest file / directory on your disk
https://github.com/weaming/itree
disk efficiency storage utility
Last synced: 29 days ago
JSON representation
Find the biggest file / directory on your disk
- Host: GitHub
- URL: https://github.com/weaming/itree
- Owner: weaming
- Created: 2018-07-16T13:35:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-13T08:03:06.000Z (over 3 years ago)
- Last Synced: 2024-11-13T11:52:27.401Z (3 months ago)
- Topics: disk, efficiency, storage, utility
- Language: Go
- Size: 17.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# iTree
Find the biggest file / directory on your disk
Same as `tree --sort=size -s/-h`, but more pretty 😉
## Usage
```
Usage of itree:
-L int
level in tree mode (default 1024)
-h human readable size (default true)
-imo
with ImoHash https://github.com/kalafut/imohash
-md5
with MD5
-t tree mode (default true)
``````
> itree
├── .git 39KB
├── filetree 5KB
│ ├── print.go 2KB
│ ├── tree.go 2KB
│ └── hash.go 289B
├── main.go 879B
├── README.md 478B
└── go.mod 41B> itree -md5
├── .git 39KB
├── filetree 5KB
│ ├── print.go 2KB 980c0231de0539926ee9417a5689488b
│ ├── tree.go 2KB e594fb1930979aba390ce4735dc81ce7
│ └── hash.go 289B 3f72c3556b9323cd1d22d262b0df7130
├── main.go 879B 073ad902e4da6b37820ef908ffea434c
├── README.md 478B 1221c2e389b21a77e35145f24f320220
└── go.mod 41B a072bc77668ba6a6c95f0a272097d2a0
```