Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
rsync /
support /
Delete
Unzip
Name
Size
Permission
Date
Action
Makefile
80
B
-rw-r--r--
2005-01-11 18:37
atomic-rsync
5.07
KB
-rw-r--r--
2021-12-30 20:29
cvs2includes
1.19
KB
-rw-r--r--
2020-06-17 01:27
deny-rsync
1005
B
-rw-r--r--
2020-06-17 01:27
file-attr-restore
4.82
KB
-rw-r--r--
2020-06-17 01:27
files-to-excludes
538
B
-rw-r--r--
2020-06-17 01:27
git-set-file-times
3.81
KB
-rw-r--r--
2022-04-11 15:57
instant-rsyncd
2.73
KB
-rw-r--r--
2020-06-17 01:27
logfilter
1.08
KB
-rw-r--r--
2020-06-17 01:27
lsh
3.03
KB
-rw-r--r--
2021-12-28 01:57
lsh.sh
1.08
KB
-rw-r--r--
2022-01-09 22:03
mapfrom
633
B
-rw-r--r--
2020-06-17 01:27
mapto
625
B
-rw-r--r--
2020-06-17 01:27
mnt-excl
1.8
KB
-rw-r--r--
2020-06-17 01:27
munge-symlinks
2.56
KB
-rw-r--r--
2021-12-21 00:41
nameconvert
1.49
KB
-rw-r--r--
2020-08-06 04:32
rrsync
12.32
KB
-rw-r--r--
2022-01-10 01:47
rrsync.1.md
4.28
KB
-rw-r--r--
2022-05-07 00:42
rsync-no-vanished
593
B
-rw-r--r--
2021-11-13 18:39
rsync-slash-strip
769
B
-rw-r--r--
2021-11-13 18:39
rsyncstats
8.49
KB
-rw-r--r--
2020-06-17 01:27
savetransfer.c
4.45
KB
-rw-r--r--
2006-12-18 07:24
Save
Rename
#!/usr/bin/env perl # This script takes an input of filenames and outputs a set of # include/exclude directives that can be used by rsync to copy # just the indicated files using an --exclude-from=FILE option. use strict; my %hash; while (<>) { chomp; s#^/+##; my $path = '/'; while (m#([^/]+/)/*#g) { $path .= $1; print "+ $path\n" unless $hash{$path}++; } if (m#([^/]+)$#) { print "+ $path$1\n"; } else { delete $hash{$path}; } } foreach (sort keys %hash) { print "- $_*\n"; } print "- /*\n";