search for: _virt_ls

Displaying 4 results from an estimated 4 matches for "_virt_ls".

Did you mean: virt_ls
2016 Aug 25
0
[PATCH 5/5] bash completion: Add missing bash completion scripts (RHBZ#1367738).
...get_kernel virt-get-kernel + _virt_inspector () { _guestfs_virttools "virt-inspector" 1 } && complete -o default -F _virt_inspector virt-inspector +_virt_log () +{ + _guestfs_virttools "virt-log" 1 +} && +complete -o default -F _virt_log virt-log + _virt_ls () { _guestfs_virttools "virt-ls" 1 } && complete -o default -F _virt_ls virt-ls +_virt_p2v_make_disk () +{ + _guestfs_virttools "virt-p2v-make-disk" 1 +} && +complete -o default -F _virt_p2v_make_disk virt-p2v-make-disk + +_virt_p2v_make_kickstart (...
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
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.
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am