-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Milde
committed
Jan 18, 2021
1 parent
e6df9c4
commit 66db0a5
Showing
12 changed files
with
98 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
gdu (4.1.0-1) unstable; urgency=medium | ||
|
||
* improved debian packaging | ||
* added man page | ||
|
||
-- Daniel Milde <[email protected]> Mon, 18 Jan 2021 14:41:04 +0000 | ||
|
||
gdu (4.0.0-1) unstable; urgency=medium | ||
|
||
* analyze current directory when no argument is passed | ||
* added option --show-disks | ||
* select previous directory when going up | ||
* select previous directory when going up | ||
|
||
-- Daniel Milde <[email protected]> Mon, 18 Jan 2021 11:46:05 +0000 | ||
|
||
gdu (3.0.0-0) UNRELEASED; urgency=medium | ||
|
||
* POSIX/GNU style flags: --log-file (or just -l) instead of -log-file | ||
* POSIX/GNU style flags: --log-file (or just -l) instead of -log-file | ||
|
||
-- Daniel Milde <[email protected]> Fri, 15 Jan 2021 18:23:42 +0200 | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
Source: gdu | ||
Section: admin | ||
Priority: optional | ||
Maintainer: Daniel Milde <[email protected]> | ||
Homepage: https://github.com/dundee/gdu | ||
Vcs-Git: https://github.com/dundee/gdu.git | ||
Vcs-Browser: https://github.com/dundee/gdu | ||
Standards-Version: 4.5.1 | ||
Section: Utilities | ||
Standards-Version: 4.5.0 | ||
XS-Go-Import-Path: github.com/dundee/gdu | ||
Build-Depends: debhelper (>= 9), | ||
dh-golang, | ||
golang-go, | ||
git | ||
debhelper-compat (= 13), | ||
dh-golang, | ||
golang-go, | ||
git | ||
|
||
Package: gdu | ||
Architecture: any | ||
Built-Using: ${misc:Built-Using} | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: Pretty fast disk usage analyzer written in Go | ||
Gdu is intended primarily for SSD disks where it can fully utilize parallel processing. | ||
However HDDs work as well, but the performance gain is not so huge. | ||
Gdu is intended primarily for SSD disks where it can fully | ||
utilize parallel processing. However HDDs work as well, but | ||
the performance gain is not so huge. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: gdu | ||
Upstream-Contact: Daniel Milde <[email protected]> | ||
Source: https://github.com/dundee/gdu | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
gdu.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (quilt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
version=4 | ||
opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/<project>-$1\.tar\.gz/ \ | ||
https://github.com/dundee/gdu/tags .*/v?(\d\S+)\.tar\.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
.nh | ||
.TH "gdu" "1" "Jan 2021" "Auto generated by spf13/cobra" "" | ||
|
||
.SH NAME | ||
.PP | ||
gdu \- Pretty fast disk usage analyzer written in Go | ||
|
||
|
||
.SH SYNOPSIS | ||
.PP | ||
\fBgdu [directory\_to\_scan] [flags]\fP | ||
|
||
|
||
.SH DESCRIPTION | ||
.PP | ||
Pretty fast disk usage analyzer written in Go. | ||
|
||
.PP | ||
Gdu is intended primarily for SSD disks where it can fully utilize parallel processing. | ||
However HDDs work as well, but the performance gain is not so huge. | ||
|
||
|
||
.SH OPTIONS | ||
.PP | ||
\fB\-h\fP, \fB\-\-help\fP[=false] | ||
help for gdu | ||
|
||
.PP | ||
\fB\-i\fP, \fB\-\-ignore\-dirs\fP=[/proc,/dev,/sys,/run] | ||
Absolute paths to ignore (separated by comma) | ||
|
||
.PP | ||
\fB\-l\fP, \fB\-\-log\-file\fP="/dev/null" | ||
Path to a logfile | ||
|
||
.PP | ||
\fB\-c\fP, \fB\-\-no\-color\fP[=false] | ||
Do not use colorized output | ||
|
||
.PP | ||
\fB\-p\fP, \fB\-\-no\-progress\fP[=false] | ||
Do not show progress | ||
|
||
.PP | ||
\fB\-n\fP, \fB\-\-non\-interactive\fP[=false] | ||
Do not run in interactive mode | ||
|
||
.PP | ||
\fB\-d\fP, \fB\-\-show\-disks\fP[=false] | ||
Show all mounted disks | ||
|
||
.PP | ||
\fB\-v\fP, \fB\-\-version\fP[=false] | ||
Print version | ||
|
||
|
||
.SH HISTORY | ||
.PP | ||
18\-Jan\-2021 Auto generated by spf13/cobra |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters