Skip to content

Commit

Permalink
doc: edit readme for new name
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasjhan committed Aug 3, 2024
1 parent 017de1c commit 65e6ac5
Showing 1 changed file with 57 additions and 51 deletions.
108 changes: 57 additions & 51 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@

This is a simple tool to analyze the filesystem.

## Installation

```bash
cargo install fscan
```

## Usage

```bash
USAGE:
fsan [FLAGS] [OPTIONS] [DIRECTORY]
fscan [FLAGS] [OPTIONS] [DIRECTORY]

FLAGS:
-s Follow any symbolic links encountered
Expand All @@ -24,7 +30,7 @@ ARGS:
## Example

```bash
fsan . -d 2
fcsan . -d 2
```

```bash
Expand All @@ -34,34 +40,34 @@ fsan . -d 2
│ │ ├── deps 141.3 MB (D)
│ │ ├── build 24.9 MB (D)
│ │ ├── incremental 23.6 MB (D)
│ │ ├── fsan 14.4 MB
│ │ ├── fs-analyzer 13.9 MB
│ │ ├── libfs_analyzer.rlib 857.4 KB
│ │ ├── libfsan.rlib 849.2 KB
│ │ ├── fsan 14.4 MB
│ │ ├── fs-analyzer 13.9 MB
│ │ ├── libfs_analyzer.rlib 857.4 KB
│ │ ├── libfsan.rlib 849.2 KB
│ │ ├── .fingerprint 70.8 KB (D)
│ │ ├── fsan.d 209 B
│ │ ├── fs-analyzer.d 127 B
│ │ ├── libfs_analyzer.d 97 B
│ │ ├── libfsan.d 90 B
│ │ ├── fsan.d 209 B
│ │ ├── fs-analyzer.d 127 B
│ │ ├── libfs_analyzer.d 97 B
│ │ ├── libfsan.d 90 B
│ │ ├── examples 0 B (D)
│ │ └── .cargo-lock 0 B
│ ├── .rustc_info.json 1.9 KB
│ └── CACHEDIR.TAG 177 B
│ │ └── .cargo-lock 0 B
│ ├── .rustc_info.json 1.9 KB
│ └── CACHEDIR.TAG 177 B
├── .git 36.1 KB (D)
│ ├── hooks 22.9 KB (D)
│ │ ├── pre-rebase.sample 4.8 KB
│ │ ├── fsmonitor-watchman.sample 4.5 KB
│ │ ├── update.sample 3.6 KB
│ │ ├── push-to-checkout.sample 2.7 KB
│ │ ├── pre-commit.sample 1.6 KB
│ │ ├── prepare-commit-msg.sample 1.5 KB
│ │ ├── pre-push.sample 1.3 KB
│ │ ├── commit-msg.sample 896 B
│ │ ├── pre-receive.sample 544 B
│ │ ├── applypatch-msg.sample 478 B
│ │ ├── pre-applypatch.sample 424 B
│ │ ├── pre-merge-commit.sample 416 B
│ │ └── post-update.sample 189 B
│ │ ├── pre-rebase.sample 4.8 KB
│ │ ├── fsmonitor-watchman.sample 4.5 KB
│ │ ├── update.sample 3.6 KB
│ │ ├── push-to-checkout.sample 2.7 KB
│ │ ├── pre-commit.sample 1.6 KB
│ │ ├── prepare-commit-msg.sample 1.5 KB
│ │ ├── pre-push.sample 1.3 KB
│ │ ├── commit-msg.sample 896 B
│ │ ├── pre-receive.sample 544 B
│ │ ├── applypatch-msg.sample 478 B
│ │ ├── pre-applypatch.sample 424 B
│ │ ├── pre-merge-commit.sample 416 B
│ │ └── post-update.sample 189 B
│ ├── objects 11.4 KB (D)
│ │ ├── 94 1.6 KB (D)
│ │ ├── 39 1.5 KB (D)
Expand All @@ -86,39 +92,39 @@ fsan . -d 2
│ │ ├── info 0 B (D)
│ │ └── pack 0 B (D)
│ ├── logs 718 B (D)
│ │ ├── HEAD 359 B
│ │ ├── HEAD 359 B
│ │ └── refs 359 B (D)
│ ├── index 681 B
│ ├── index 681 B
│ ├── info 240 B (D)
│ │ └── exclude 240 B
│ ├── config 92 B
│ ├── description 73 B
│ ├── COMMIT_EDITMSG 48 B
│ │ └── exclude 240 B
│ ├── config 92 B
│ ├── description 73 B
│ ├── COMMIT_EDITMSG 48 B
│ ├── refs 41 B (D)
│ │ ├── heads 41 B (D)
│ │ └── tags 0 B (D)
│ └── HEAD 23 B
│ └── HEAD 23 B
├── src 11.0 KB (D)
│ ├── lib 9.0 KB (D)
│ │ ├── print.rs 4.5 KB
│ │ ├── mod.rs 2.8 KB
│ │ └── tree.rs 1.7 KB
│ └── main.rs 2.0 KB
├── Cargo.lock 3.2 KB
├── readme.md 500 B
├── Cargo.toml 261 B
└── .gitignore 8 B
│ │ ├── print.rs 4.5 KB
│ │ ├── mod.rs 2.8 KB
│ │ └── tree.rs 1.7 KB
│ └── main.rs 2.0 KB
├── Cargo.lock 3.2 KB
├── readme.md 500 B
├── Cargo.toml 261 B
└── .gitignore 8 B
```

## Features

* Display directory tree
* Display size of each directory and files
* Display size in human readable format
* Display size in raw format
* Sort by size
* Display with colors
* Executables
* Directories
* hidden files
* symbolic links
- Display directory tree
- Display size of each directory and files
- Display size in human readable format
- Display size in raw format
- Sort by size
- Display with colors
- Executables
- Directories
- hidden files
- symbolic links

0 comments on commit 65e6ac5

Please sign in to comment.