Changes between Initial Version and Version 1 of Ticket #10156
- Timestamp:
- Oct 29, 2013, 9:52:18 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10156
- Property Summary Implement -o option to customize the program output → [ps] Implement -o option to customize the program output
-
Ticket #10156 – Description
initial v1 1 [ps] Implement -o option to customize the program output 2 3 It should help in porting shell scripts to have possibility to customize the ps tool output with the -o option as is implemented in other operation systems. For example: 1 It should help in porting shell scripts to have possibility to customize the ps tool output with the -o option as is implemented in other operation systems. For example current output: 4 2 5 3 … … 8 6 Team Id #Threads Gid Uid 9 7 kernel_team 1 50 0 0 10 /boot/apps/Pe/Pe 156192 7 0 0 11 /boot/apps/WebPositive 176176 7 0 0 8 /boot/apps/Pe/Pe 156192 7 0 0 9 /boot/apps/WebPositive 176176 7 0 0 10 }}} 12 11 13 ------------------------------------------------------------------------------- 12 can be customized as follows: 13 14 {{{ 14 15 /boot> ps -o Id,Team 15 Team Id 16 1kernel_team16 Id Team 17 1 kernel_team 17 18 156192 /boot/apps/Pe/Pe 18 19 176176 /boot/apps/WebPositive 19 20 }}} 21