summaryrefslogtreecommitdiffstats
path: root/htop.c
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2006-08-04 20:54:37 +0000
committerHisham Muhammad <hisham@gobolinux.org>2006-08-04 20:54:37 +0000
commitb10821aae9ac208dce0613e6869984d4f2fa1674 (patch)
tree25562ec8b27aba9b5ab7bfe52704a9f02d6b3a4a /htop.c
parentbf44e233e62c44f3ec2edd71c37a3102c788d6ee (diff)
--sort-key flag in the command-line, overriding the
saved setting in .htoprc for the session. (thanks to Rodolfo Borges)
Diffstat (limited to 'htop.c')
-rw-r--r--htop.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/htop.c b/htop.c
index 8ce6a798..c5bd6f05 100644
--- a/htop.c
+++ b/htop.c
@@ -46,6 +46,7 @@ void printHelpFlag() {
printf("Released under the GNU GPL.\n\n");
printf("-d DELAY Delay between updates, in tenths of seconds\n\n");
printf("-u USERNAME Show only processes of a given user\n\n");
+ printf("--sort-key COLUMN Sort by this column (use --sort-key help for a column list)\n\n");
printf("Press F1 inside htop for online help.\n");
printf("See the man page for full information.\n\n");
exit(0);
@@ -194,12 +195,25 @@ int main(int argc, char** argv) {
int delay = -1;
bool userOnly = false;
uid_t userId = 0;
+ int sortKey = 0;
if (argc > 0) {
if (String_eq(argv[1], "--help")) {
printHelpFlag();
} else if (String_eq(argv[1], "--version")) {
printVersionFlag();
+ } else if (String_eq(argv[1], "--sort-key")) {
+ if (argc < 2) printHelpFlag();
+ if (String_eq(argv[2], "help")) {
+ for (int j = 1; j < LAST_PROCESSFIELD; j++)
+ printf ("%s\n", Process_fieldNames[j]);
+ exit(0);
+ }
+ sortKey = ColumnsPanel_fieldNameToIndex(argv[2]);
+ if (sortKey == -1) {
+ fprintf(stderr, "Error: invalid column \"%s\".\n", argv[2]);
+ exit(1);
+ }
} else if (String_eq(argv[1], "-d")) {
if (argc < 2) printHelpFlag();
sscanf(argv[2], "%d", &delay);
@@ -237,6 +251,10 @@ int main(int argc, char** argv) {
Header* header = Header_new(pl);
settings = Settings_new(pl, header);
+ if (sortKey > 0) {
+ pl->sortKey = sortKey;
+ pl->treeView = false;
+ }
int headerHeight = Header_calculateHeight(header);
// FIXME: move delay code to settings

© 2014-2024 Faster IT GmbH | imprint | privacy policy