<arg choice="opt">--frozen</arg>
<arg choice="opt">--running</arg>
<arg choice="opt">--stopped</arg>
- <arg choice="opt">--fancy</arg>
- <arg choice="opt">--fancy-format</arg>
+ <arg choice="opt">-f</arg>
+ <arg choice="opt">-F <replaceable>format</replaceable></arg>
<arg choice="opt">--nesting</arg>
<arg choice="opt">filter</arg>
</cmdsynopsis>
<varlistentry>
<term>
- <option><optional>--fancy</optional></option>
+ <option><optional>-f, --fancy</optional></option>
</term>
<listitem>
<para>
<varlistentry>
<term>
- <option><optional>--fancy-format</optional></option>
+ <option><optional>-F, --fancy-format <replaceable>format</replaceable></optional></option>
</term>
<listitem>
<para>
parser.add_argument("--stopped", dest="state", action="append_const",
const="STOPPED", help=_("list only stopped containers"))
-parser.add_argument("--fancy", action="store_true",
+parser.add_argument("-f", "--fancy", action="store_true",
help=_("use fancy output"))
-parser.add_argument("--fancy-format", type=str,
+parser.add_argument("-F", "--fancy-format", type=str,
default="name,state,ipv4,ipv6,autostart",
help=_("comma separated list of fields to show"))