[ Avaa Bypassed ]




Upload:

Command:

www-data@3.142.242.51: ~ $
#!/usr/bin/perl
use strict;
use warnings;

# Sets mtime and atime of files to the latest commit time in git.
#
# This is useful after the first clone of the rsync repository BEFORE you
# do any building.  It is also safe if you have done a "make distclean".

my %ls;
my $commit_time;
my $prefix = @ARGV && $ARGV[0] =~ s/^--prefix=// ? shift : '';

$/ = "\0";
open FH, 'git ls-files -z|' or die $!;
while (<FH>) {
    chomp;
    $ls{$_} = $_;
}
close FH;

$/ = "\n";
open FH, "git log -r --name-only --no-color --pretty=raw -z @ARGV |" or die $!;
while (<FH>) {
    chomp;
    if (/^committer .*? (\d+) (?:[\-\+]\d+)$/) {
	$commit_time = $1;
    } elsif (s/\0\0commit [a-f0-9]{40}$// or s/\0$//) {
	my @files = delete @ls{split(/\0/, $_)};
	@files = grep { defined $_ } @files;
	next unless @files;
	map { s/^/$prefix/ } @files;
	utime $commit_time, $commit_time, @files;
    }
    last unless %ls;
}
close FH;

Filemanager

Name Type Size Permission Actions
atomic-rsync File 3.9 KB 0755
cull_options File 2.39 KB 0755
cvs2includes File 1.18 KB 0755
file-attr-restore File 4.82 KB 0755
files-to-excludes File 534 B 0755
git-set-file-times File 910 B 0755
logfilter File 1.07 KB 0755
lsh File 2.21 KB 0755
mnt-excl File 1.8 KB 0755
munge-symlinks File 1.43 KB 0755
rrsync File 7.07 KB 0755
rsyncstats File 8.48 KB 0755