search for: flag_ro

Displaying 3 results from an estimated 3 matches for "flag_ro".

2014 Nov 26
5
[PATCH] tools: implement --short-options
Just like --long-options, it makes it possible to know which short options are supported by each tool; this can help improving the bash completion, for example. --- align/scan.c | 3 +++ builder/cmdline.ml | 1 + cat/cat.c | 3 +++ cat/filesystems.c | 3 +++ cat/log.c | 3 +++ cat/ls.c | 3 +++
2016 Aug 25
0
[PATCH 5/5] bash completion: Add missing bash completion scripts (RHBZ#1367738).
...uto" -- "$cur") ) + return ;; + --check-tmpdir) + COMPREPLY=( $( compgen -W "ignore i continue cont c warn warning w fail f error" -- "$cur") ) + return ;; -d|--domain) doms=$(_guestfs_virsh_list "$flag_ro") COMPREPLY=( $(compgen -W "$doms" -- "$cur") ) return ;; + -D) + doms=$(_guestfs_virsh_list "$flag_ro") + COMPREPLY=( $(compgen -W "$doms" -- "$cur") ) + return ;; + --li...
2016 Aug 25
7
[PATCH 0/5] bash completion: Add missing bash completion scripts (RHBZ#1367738).
This implements most of RHBZ#1367738. I didn't bother with virt-v2v-copy-to-local and virt-win-reg, but all the other tools now have full bash completion. Rich.