mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 05:25:50 +03:00
1e43d1fa49
LGPL for csync tests, GPL for mirall tests
36 lines
1 KiB
Perl
Executable file
36 lines
1 KiB
Perl
Executable file
#!/usr/bin/env perl
|
|
#
|
|
# Copyright (C) by Daniel Molkentin <danimo@owncloud.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
# for more details.
|
|
#
|
|
|
|
use strict;
|
|
use File::Path qw(make_path);
|
|
use File::Basename qw(dirname);
|
|
|
|
if (scalar @ARGV < 2) {
|
|
print "Usage: $0 input.lay <offsetdir>\n";
|
|
exit;
|
|
}
|
|
|
|
my ($file, $offset_dir) = @ARGV;
|
|
|
|
open FILE, "<", $file or die $!;
|
|
while (<FILE>) {
|
|
my ($fillfile, $size) = split(/:/, $_);
|
|
$fillfile = $offset_dir . '/' . $fillfile;
|
|
my $dir = dirname $fillfile;
|
|
if (!-d $dir) { make_path $dir; }
|
|
open FILLFILE, ">", $fillfile;
|
|
print "writing $fillfile with $size bytes\n...";
|
|
print FILLFILE 0x01 x $size;
|
|
close FILLFILE;
|
|
}
|