ps: enable sort by etimes
ps has two columns showing the same data which is elapsed time, just the format is changed: etimes - elapsed time in seconds etime - elapsed time in DD-hh:mm:ss ps used to only sort by etime but not etimes, by making etimes and alias of etime for sorting both flags work. References: https://bugs.debian.org/794619 Signed-off-by: Craig Small <csmall@enc.com.au>
This commit is contained in:
parent
3da298c1d6
commit
313f936739
1
NEWS
1
NEWS
@ -3,6 +3,7 @@ procps-ng-NEXT
|
|||||||
* pgrep: don't crash with -a -w flags. Merge 33, Debian #768190
|
* pgrep: don't crash with -a -w flags. Merge 33, Debian #768190
|
||||||
* skill: command line with signal number interpreted correctly
|
* skill: command line with signal number interpreted correctly
|
||||||
* pmap: print process name even if smaps is unreadable Debian #775624
|
* pmap: print process name even if smaps is unreadable Debian #775624
|
||||||
|
* ps: sort by etimes column, uses etime Debian #794619
|
||||||
|
|
||||||
procps-ng-3.3.10
|
procps-ng-3.3.10
|
||||||
----------------
|
----------------
|
||||||
|
@ -1467,7 +1467,7 @@ static const format_struct format_array[] = {
|
|||||||
{"environ","ENVIRONMENT",pr_nop, sr_nop, 11, ENV, LNx, PO|UNLIMITED},
|
{"environ","ENVIRONMENT",pr_nop, sr_nop, 11, ENV, LNx, PO|UNLIMITED},
|
||||||
{"esp", "ESP", pr_esp, sr_kstk_esp, 8, 0, LNX, TO|RIGHT},
|
{"esp", "ESP", pr_esp, sr_kstk_esp, 8, 0, LNX, TO|RIGHT},
|
||||||
{"etime", "ELAPSED", pr_etime, sr_etime, 11, 0, U98, ET|RIGHT}, /* was 7 wide */
|
{"etime", "ELAPSED", pr_etime, sr_etime, 11, 0, U98, ET|RIGHT}, /* was 7 wide */
|
||||||
{"etimes", "ELAPSED", pr_etimes, sr_nop, 7, 0, BSD, ET|RIGHT}, /* FreeBSD */
|
{"etimes", "ELAPSED", pr_etimes, sr_etime, 7, 0, BSD, ET|RIGHT}, /* FreeBSD */
|
||||||
{"euid", "EUID", pr_euid, sr_euid, 5, 0, LNX, ET|RIGHT},
|
{"euid", "EUID", pr_euid, sr_euid, 5, 0, LNX, ET|RIGHT},
|
||||||
{"euser", "EUSER", pr_euser, sr_euser, 8, USR, LNX, ET|USER},
|
{"euser", "EUSER", pr_euser, sr_euser, 8, USR, LNX, ET|USER},
|
||||||
{"f", "F", pr_flag, sr_flags, 1, 0, XXX, ET|RIGHT}, /*flags*/
|
{"f", "F", pr_flag, sr_flags, 1, 0, XXX, ET|RIGHT}, /*flags*/
|
||||||
|
Loading…
Reference in New Issue
Block a user