2017-06-15 21:12:26 +02:00
|
|
|
---
|
2020-02-10 13:31:45 +01:00
|
|
|
date: 2020-02-10T12:28:36Z
|
2017-06-15 21:12:26 +02:00
|
|
|
title: "rclone ncdu"
|
|
|
|
slug: rclone_ncdu
|
|
|
|
url: /commands/rclone_ncdu/
|
2020-02-10 13:31:45 +01:00
|
|
|
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/ncdu/ and as part of making a release run "make commanddocs"
|
2017-06-15 21:12:26 +02:00
|
|
|
---
|
|
|
|
## rclone ncdu
|
|
|
|
|
|
|
|
Explore a remote with a text based user interface.
|
|
|
|
|
|
|
|
### Synopsis
|
|
|
|
|
|
|
|
|
|
|
|
This displays a text based user interface allowing the navigation of a
|
|
|
|
remote. It is most useful for answering the question - "What is using
|
|
|
|
all my disk space?".
|
|
|
|
|
2018-03-19 11:06:13 +01:00
|
|
|
<script src="https://asciinema.org/a/157793.js" id="asciicast-157793" async></script>
|
|
|
|
|
2017-06-15 21:12:26 +02:00
|
|
|
To make the user interface it first scans the entire remote given and
|
|
|
|
builds an in memory representation. rclone ncdu can be used during
|
|
|
|
this scanning phase and you will see it building up the directory
|
|
|
|
structure as it goes along.
|
|
|
|
|
|
|
|
Here are the keys - press '?' to toggle the help on and off
|
|
|
|
|
|
|
|
↑,↓ or k,j to Move
|
|
|
|
→,l to enter
|
|
|
|
←,h to return
|
|
|
|
c toggle counts
|
|
|
|
g toggle graph
|
|
|
|
n,s,C sort by name,size,count
|
2018-11-24 14:44:25 +01:00
|
|
|
d delete file/directory
|
2020-02-01 11:31:42 +01:00
|
|
|
y copy current path to clipbard
|
2019-08-26 16:25:20 +02:00
|
|
|
Y display current path
|
2018-03-24 18:55:20 +01:00
|
|
|
^L refresh screen
|
2017-06-15 21:12:26 +02:00
|
|
|
? to toggle help on and off
|
|
|
|
q/ESC/c-C to quit
|
|
|
|
|
|
|
|
This an homage to the [ncdu tool](https://dev.yorhel.nl/ncdu) but for
|
2018-11-24 14:44:25 +01:00
|
|
|
rclone remotes. It is missing lots of features at the moment
|
|
|
|
but is useful as it stands.
|
|
|
|
|
|
|
|
Note that it might take some time to delete big files/folders. The
|
|
|
|
UI won't respond in the meantime since the deletion is done synchronously.
|
2017-06-15 21:12:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-09-30 15:19:47 +02:00
|
|
|
rclone ncdu remote:path [flags]
|
|
|
|
```
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
```
|
|
|
|
-h, --help help for ncdu
|
2017-06-15 21:12:26 +02:00
|
|
|
```
|
|
|
|
|
2019-06-20 17:18:02 +02:00
|
|
|
See the [global flags page](/flags/) for global options not listed here.
|
|
|
|
|
2017-06-15 21:12:26 +02:00
|
|
|
### SEE ALSO
|
|
|
|
|
2018-10-15 12:03:08 +02:00
|
|
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
2018-03-19 11:06:13 +01:00
|
|
|
|