Files
metasploit-gs/lib
RageLtMan ed3b1cecd4 Rex::Text::Ui::Table.new[find_by_colnames]
Add :[] to ...Ui::Table allowing user to pass multiple colnames.
Returns a new table with only those columns and their rows.

Useful when using Rex to filter output, prep CSV, etc.

Testing:
```
t = Rex::Ui::Text::Table.new('Columns' => ['a','b','c'])
t << ['x','y','z']
t << ['p','q','r']
t['a','c']

=> a  c
-  -
p  r
x  z
```
2013-03-28 04:02:31 -04:00
..
2013-03-18 11:01:45 -05:00
2012-04-23 23:06:52 -05:00
2012-09-04 19:20:31 -05:00
2012-04-15 23:35:38 -05:00
2013-03-18 11:01:45 -05:00
2013-02-24 13:11:15 -06:00
2012-11-20 19:29:12 -06:00
2013-02-20 15:33:24 -06:00
2012-04-15 23:35:38 -05:00
2011-06-03 00:15:08 +00:00