Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
buffer /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
download-node-tests.js
3.17
KB
-rw-r--r--
2022-04-21 14:28
test.js
1.1
KB
-rw-r--r--
2022-04-21 14:28
update-authors.sh
521
B
-rw-r--r--
2022-04-21 14:28
zuul-es5.yml
253
B
-rw-r--r--
2022-04-21 14:28
zuul-es6.yml
106
B
-rw-r--r--
2022-04-21 14:28
Save
Rename
#!/bin/sh # Update AUTHORS.md based on git history. git log --reverse --format='%aN (%aE)' | perl -we ' BEGIN { %seen = (), @authors = (); } while (<>) { next if $seen{$_}; next if /(support\@greenkeeper.io)/; next if /(dcousens\@users.noreply.github.com)/; next if /(cmetcalf\@appgeo.com)/; $seen{$_} = push @authors, "- ", $_; } END { print "# Authors\n\n"; print "#### Ordered by first contribution.\n\n"; print @authors, "\n"; print "#### Generated by bin/update-authors.sh.\n"; } ' > AUTHORS.md