7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
#!/usr/bin/perl
@table=`ps -eo pid,comm,%cpu`;
# print "@tabela";
@tableedited=split(/ +/,"@table");
#print "@tableedited";
Quotemy @table_sort=sort { $a <=> $b }@table ;
foreach (@table_sort) {
print "$_\n";
}
7 Einträge, 1 Seite |