Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
rsync /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
atomic-rsync
5.07
KB
-rwxr-xr-x
2021-12-31 05:29
cull-options
4.79
KB
-rwxr-xr-x
2022-08-21 00:30
cvs2includes
1.18
KB
-rwxr-xr-x
2026-06-08 23:10
file-attr-restore
4.82
KB
-rwxr-xr-x
2026-06-08 23:10
files-to-excludes
534
B
-rwxr-xr-x
2026-06-08 23:10
git-set-file-times
3.81
KB
-rwxr-xr-x
2022-04-12 00:57
logfilter
1.07
KB
-rwxr-xr-x
2026-06-08 23:10
lsh
3.03
KB
-rwxr-xr-x
2026-06-08 23:10
mnt-excl
1.8
KB
-rwxr-xr-x
2026-06-08 23:10
munge-symlinks
2.56
KB
-rwxr-xr-x
2021-12-21 09:41
rsync-no-vanished
593
B
-rwxr-xr-x
2021-11-14 03:39
rsyncstats
8.48
KB
-rwxr-xr-x
2026-06-08 23:10
Save
Rename
#!/usr/bin/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";