search for: create_pipe

Displaying 2 results from an estimated 2 matches for "create_pipe".

Did you mean: create_file
2014 Jan 27
0
[PATCH INCOMPLETE] Rewrite virt-make-fs in C (originally Perl).
...vfat uses on disk (RHBZ#823885). - my $options = ""; - $options = "utf8" if $type eq "vfat"; - - $g->mount_options ($options, $dev, "/"); - - # Copy the data in. - my $ifile; - - if ($ifmt eq "directory") { - my $pfile = create_pipe (); - my $cmd = sprintf ("tar -C %s -cf - . > $pfile &", - shell_quote ($input)); - print STDERR "command: $cmd\n" if $debug; - system ($cmd) == 0 or die __"tar: failed, see earlier messages\n"; - $ifile = $p...
2014 Jan 27
2
[PATCH INCOMPLETE] Rewrite virt-make-fs in C (originally Perl).
I thought it would be easy to rewrite virt-make-fs in C. Two days later ... The Perl program uses a lot of external commands, which makes it pretty tedious to implement in C. Rich.