search for: 04fbae6

Displaying 1 result from an estimated 1 matches for "04fbae6".

2015 Oct 05
1
[PATCH] Fix shebang in perl scripts
...mples/create_disk.pl @@ -1,8 +1,9 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # Example showing how to create a disk image. use strict; +use warnings; use Sys::Guestfs; my $output = "disk.img"; diff --git a/perl/examples/inspect_vm.pl b/perl/examples/inspect_vm.pl index 6d95b69..04fbae6 100755 --- a/perl/examples/inspect_vm.pl +++ b/perl/examples/inspect_vm.pl @@ -1,8 +1,9 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # Example showing how to inspect a virtual machine disk. use strict; +use warnings; use Sys::Guestfs; if (@ARGV < 1) { diff --git a/pick-guests.pl.in b/pi...