File: ur-test-callcount-list.pod

package info (click to toggle)
libur-perl 0.470%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,184 kB
  • sloc: perl: 61,813; javascript: 255; xml: 108; sh: 13; makefile: 9
file content (124 lines) | stat: -rw-r--r-- 2,491 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124


=pod

=head1 NAME

ur test callcount list - Filter and list Callcount items



=head1 VERSION

This document describes ur test callcount list version 0.29.

=head1 SYNOPSIS

ur test callcount list --file=? --show=? [--csv-delimiter=?] [--filter=?] [--noheaders] [--style=?]



=head1 REQUIRED ARGUMENTS

=over


=item file  I<String>

Specify the .callcount file

Default value '/dev/null' if not specified

=item show

Specify which columns to show, in order.

Default value 'count,subname,subloc,callers' if not specified


=back

=head1 OPTIONAL ARGUMENTS

=over


=item csv-delimiter  I<Text>

For the csv output style, specify the field delimiter

Default value ',' if not specified

=item filter  I<Text>

Filter results based on the parameters.  See below for how to.

=item noheaders  I<Boolean>

Do not include headers

Default value 'false' (--nonoheaders) if not specified

=item nonoheaders  I<Boolean>

Make noheaders 'false'

=item style  I<Text>

Style of the list: text (default), csv, pretty, html, xml

Default value 'text' if not specified


=back

=head1 DESCRIPTION:

  Listing Styles:
  ---------------
   text - table like
   csv - comma separated values
   pretty - objects listed singly with color enhancements
   html - html table
   xml - xml document using elements
  
  
  Filtering:
  ----------
   Create filter equations by combining filterable properties with operators and
       values.
   Combine and separate these 'equations' by commas.  
   Use single quotes (') to contain values with spaces: name='genome institute'
   Use percent signs (%) as wild cards in like (~).
   Use backslash or single quotes to escape characters which have special meaning
       to the shell such as < > and &
  
  Operators:
  ----------
   =  (exactly equal to)
   ~  (like the value)
   :  (in the list of several values, slash "/" separated)
      (or between two values, dash "-" separated)
   >  (greater than)
   >= (greater than or equal to)
   <  (less than)
   <= (less than or equal to)
  
  Examples:
  ---------
   lister-command --filter name=Bob --show id,name,address
   lister-command --filter name='something with space',employees>200,job~%manager
   lister-command --filter cost:20000-90000
   lister-command --filter answer:yes/maybe
  
  Filterable Properties: 
  ----------------------
   callers  (String):  (undocumented)
     count  (Integer):  (undocumented)
    subloc  (String):  (undocumented)
   subname  (String):  (undocumented)



=cut