ncdc 1.10 release + misc stuff
This commit is contained in:
parent
2f88c43171
commit
2c6db29f18
9 changed files with 61 additions and 11 deletions
18
dat/ncdu
18
dat/ncdu
|
|
@ -14,10 +14,16 @@ to run in any minimal POSIX-like environment with ncurses installed.
|
|||
|
||||
=item Latest version
|
||||
|
||||
1.9 ([dllink ncdu-1.9.tar.gz download]
|
||||
1.10 ([dllink ncdu-1.10.tar.gz download]
|
||||
- L<changes|http://dev.yorhel.nl/ncdu/changes>
|
||||
- L<mirror|https://sourceforge.net/projects/ncdu/files/ncdu/>)
|
||||
|
||||
I also have convenient static binaries for Linux
|
||||
L<i486|http://dev.yorhel.nl/download/ncdu-linux-i486-1.10.tar.gz> and
|
||||
L<ARM|http://dev.yorhel.nl/download/ncdu-linux-arm-1.10.tar.gz>. Download,
|
||||
extract and run; no compilation or installation necessary (uses
|
||||
L<musl|http://www.musl-libc.org/>).
|
||||
|
||||
=item Development version
|
||||
|
||||
The most recent code is available on a git repository and can be cloned with
|
||||
|
|
@ -51,18 +57,16 @@ L<Frugalware|http://frugalware.org/packages/?op=pkg&srch=ncdu&arch=all&ver=all>
|
|||
L<Gentoo|http://packages.gentoo.org/package/sys-fs/ncdu> -
|
||||
L<IPCop|http://www.ipadd.de/binary-v2.html> -
|
||||
L<OpenBSD|http://www.openbsd.org/cgi-bin/cvsweb/ports/sysutils/ncdu/> -
|
||||
L<OpenSUSE|http://packman.links2linux.de/package/ncdu/> -
|
||||
Mac OS X (L<Fink|http://pdb.finkproject.org/pdb/package.php/ncdu> - L<Homebrew|http://mxcl.github.com/homebrew/> - L<MacPorts|http://www.macports.org/ports.php?by=name&substr=ncdu>) -
|
||||
Mac OS X (L<Fink|http://pdb.finkproject.org/pdb/package.php/ncdu> - L<Homebrew|http://braumeister.org/formula/ncdu> - L<MacPorts|http://www.macports.org/ports.php?by=name&substr=ncdu>) -
|
||||
L<Pardus|http://packages.pardus.org.tr/info/2011/testing/source/ncdu.html> -
|
||||
L<Puppy Linux|http://www.murga-linux.com/puppy/viewtopic.php?t=35024> -
|
||||
Solaris (L<CSW|http://www.opencsw.org/packages/ncdu> - L<sunfreeware|http://www.sunfreeware.com/>) -
|
||||
L<Solaris|http://www.opencsw.org/packages/ncdu> -
|
||||
Slackware (L<Slackbuilds|http://slackbuilds.org/repository/13.37/system/ncdu/> - L<Slackers.it|http://www.slackers.it/repository/ncdu/>) -
|
||||
L<Ubuntu|http://packages.ubuntu.com/search?searchon=sourcenames&keywords=ncdu> -
|
||||
L<Zenwalk|http://zur.zenwalk.org/view/package/name/ncdu>
|
||||
|
||||
Ncdu is also available on the
|
||||
L<Open Build Service|https://build.opensuse.org/package/show?package=ncdu&project=utilities>,
|
||||
which provides packages for a variaty of Linux distributions.
|
||||
Packages for CentOS, RHEL and (open)SUSE can be found on the
|
||||
L<Open Build Service|https://build.opensuse.org/package/show?package=ncdu&project=utilities>.
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,12 @@
|
|||
1.10 - 2013-05-09
|
||||
- Added 'c' key to display item counts
|
||||
- Added 'C' key to order by item counts
|
||||
- Added CACHEDIR.TAG support and --exclude-caches option
|
||||
- Use locale-dependent thousand separator
|
||||
- Use pkg-config to detect ncurses
|
||||
- Clip file/dir sizes to 8 EiB minus one byte
|
||||
- Fix buffer overflow when formatting huge file sizes
|
||||
|
||||
1.9 - 2012-09-27
|
||||
- Added option to dump scanned directory information to a file (-o)
|
||||
- Added option to load scanned directory information from a file (-f)
|
||||
|
|
|
|||
19
dat/ncdu-man
19
dat/ncdu-man
|
|
@ -122,6 +122,13 @@ can be added multiple times to add more patterns.
|
|||
Exclude files that match any pattern in I<FILE>. Patterns should be separated
|
||||
by a newline.
|
||||
|
||||
=item --exclude-caches
|
||||
|
||||
Exclude directories containing CACHEDIR.TAG. The directories will still be
|
||||
displayed, but not their content, and they are not counted towards the disk
|
||||
usage statistics.
|
||||
See http://www.brynosaurus.com/cachedir/
|
||||
|
||||
=back
|
||||
|
||||
|
||||
|
|
@ -153,6 +160,10 @@ Order by filename (press again for descending order)
|
|||
|
||||
Order by filesize (press again for descending order)
|
||||
|
||||
=item C
|
||||
|
||||
Order by number of items (press again for descending order)
|
||||
|
||||
=item a
|
||||
|
||||
Toggle between showing disk usage and showing apparent size.
|
||||
|
|
@ -173,6 +184,10 @@ Toggle between showing percentage, graph, both, or none. Percentage is relative
|
|||
to the size of the current directory, graph is relative to the largest item in
|
||||
the current directory.
|
||||
|
||||
=item c
|
||||
|
||||
Toggle display of child item counts.
|
||||
|
||||
=item e
|
||||
|
||||
Show/hide 'hidden' or 'excluded' files and directories. Please note that even
|
||||
|
|
@ -276,6 +291,10 @@ links, and will thus be scanned and counted multiple times.
|
|||
Some minor glitches may appear when displaying filenames that contain multibyte
|
||||
or multicolumn characters.
|
||||
|
||||
All sizes are internally represented as a signed 64bit integer. If you have a
|
||||
directory larger than 8 EiB minus one byte, ncdu will clip its size to 8 EiB
|
||||
minus one byte.
|
||||
|
||||
Please report any other bugs you may find at the bug tracker, which can be
|
||||
found on the web site at http://dev.yorhel.nl/ncdu
|
||||
|
||||
|
|
|
|||
2
dat/tuwf
2
dat/tuwf
|
|
@ -61,8 +61,6 @@ TUWF is also available on a git repository at L<http://g.blicky.net/tuwf.git/>.
|
|||
|
||||
=item * The website embedded in the L<D&R Axum|http://www.d-r.nl/AXUM/AXUM.htm> mixing console.
|
||||
|
||||
=item * L<Yorhel.nl|http://yorhel.nl/>
|
||||
|
||||
=item * L<333networks|http://333networks.com/>
|
||||
|
||||
=back
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue