Pino Toscano
2013-Dec-09 17:17 UTC
[Libguestfs] [PATCH] sysprep: mention globbing in help for --delete
Followup of ed4bcb119cb908e98ecc1107dcd8b740ee2f484f. --- sysprep/sysprep_operation_delete.ml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sysprep/sysprep_operation_delete.ml b/sysprep/sysprep_operation_delete.ml index 59d5485..a08d4d0 100644 --- a/sysprep/sysprep_operation_delete.ml +++ b/sysprep/sysprep_operation_delete.ml @@ -40,7 +40,10 @@ let op = { pod_description = Some (s_"\ Delete specified files or directories. -Use the I<--delete> option to specify a path to remove."); +Use the I<--delete> option to specify a path to remove. + +You can use shell glob characters in the specified path, i.e. +C</some/dir/prefix*>."); extra_args = [ { extra_argspec = ("--delete", Arg.String add_paths, s_"path" ^ " " ^ s_"File or directory to be removed on guest"); extra_pod_argval = Some "PATHNAME"; -- 1.8.3.1
Richard W.M. Jones
2013-Dec-09 17:58 UTC
Re: [Libguestfs] [PATCH] sysprep: mention globbing in help for --delete
On Mon, Dec 09, 2013 at 06:17:00PM +0100, Pino Toscano wrote:> Followup of ed4bcb119cb908e98ecc1107dcd8b740ee2f484f. > --- > sysprep/sysprep_operation_delete.ml | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/sysprep/sysprep_operation_delete.ml b/sysprep/sysprep_operation_delete.ml > index 59d5485..a08d4d0 100644 > --- a/sysprep/sysprep_operation_delete.ml > +++ b/sysprep/sysprep_operation_delete.ml > @@ -40,7 +40,10 @@ let op = { > pod_description = Some (s_"\ > Delete specified files or directories. > > -Use the I<--delete> option to specify a path to remove."); > +Use the I<--delete> option to specify a path to remove. > + > +You can use shell glob characters in the specified path, i.e. > +C</some/dir/prefix*>.");How about /var/log/*.log as the example? Also I think we should tell people to quote the arg to defend it from the shell. So it could look like this: -Use the I<--delete> option to specify a path to remove."); +Use the I<--delete> option to specify a path to remove. + +You can use shell glob characters in the specified path, +for example: + + virt-sysprep --delete '/var/log/*.log'"); (Putting a space in front makes verbatim text in POD) Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-df lists disk usage of guests without needing to install any software inside the virtual machine. Supports Linux and Windows. http://people.redhat.com/~rjones/virt-df/
Pino Toscano
2013-Dec-09 18:40 UTC
Re: [Libguestfs] [PATCH] sysprep: mention globbing in help for --delete
On Monday 09 December 2013 17:58:37 Richard W.M. Jones wrote:> On Mon, Dec 09, 2013 at 06:17:00PM +0100, Pino Toscano wrote: > > Followup of ed4bcb119cb908e98ecc1107dcd8b740ee2f484f. > > --- > > > > sysprep/sysprep_operation_delete.ml | 5 ++++- > > 1 file changed, 4 insertions(+), 1 deletion(-) > > > > diff --git a/sysprep/sysprep_operation_delete.ml > > b/sysprep/sysprep_operation_delete.ml index 59d5485..a08d4d0 100644 > > --- a/sysprep/sysprep_operation_delete.ml > > +++ b/sysprep/sysprep_operation_delete.ml > > @@ -40,7 +40,10 @@ let op = { > > > > pod_description = Some (s_"\ > > > > Delete specified files or directories. > > > > -Use the I<--delete> option to specify a path to remove."); > > +Use the I<--delete> option to specify a path to remove. > > + > > +You can use shell glob characters in the specified path, i.e. > > +C</some/dir/prefix*>."); > > How about /var/log/*.log as the example? Also I think we should tell > people to quote the arg to defend it from the shell. So it could look > like this: > > -Use the I<--delete> option to specify a path to remove."); > +Use the I<--delete> option to specify a path to remove. > + > +You can use shell glob characters in the specified path, > +for example: > + > + virt-sysprep --delete '/var/log/*.log'"); > > (Putting a space in front makes verbatim text in POD)Good starting point, I've spelt the escaping need explicitly; updated patch coming. -- Pino Toscano
Pino Toscano
2013-Dec-09 18:40 UTC
[Libguestfs] [PATCH] sysprep: mention globbing in help for --delete
Followup of ed4bcb119cb908e98ecc1107dcd8b740ee2f484f. --- sysprep/sysprep_operation_delete.ml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sysprep/sysprep_operation_delete.ml b/sysprep/sysprep_operation_delete.ml index 59d5485..3db3f57 100644 --- a/sysprep/sysprep_operation_delete.ml +++ b/sysprep/sysprep_operation_delete.ml @@ -40,7 +40,12 @@ let op = { pod_description = Some (s_"\ Delete specified files or directories. -Use the I<--delete> option to specify a path to remove."); +Use the I<--delete> option to specify a path to remove. + +You can use shell glob characters in the specified path; note that such +metacharacters might require proper escape. For example: + + virt-sysprep --delete '/var/log/*.log'."); extra_args = [ { extra_argspec = ("--delete", Arg.String add_paths, s_"path" ^ " " ^ s_"File or directory to be removed on guest"); extra_pod_argval = Some "PATHNAME"; -- 1.8.3.1
Maybe Matching Threads
- [PATCH] sysprep: mention globbing in help for --delete
- [PATCH] sysprep: allow to specify globbing for --delete
- Re: [PATCH] sysprep: mention globbing in help for --delete
- Re: [PATCH] sysprep: allow to specify globbing for --delete
- Re: [PATCH] RFC: OCaml tools: add and use a Getopt module