Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.138.191.28
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
changelog.js
3
KB
-rw-r--r--
2021-03-10 14:36
clean-old.sh
4.17
KB
-rw-r--r--
2021-03-10 14:36
dep-update
294
B
-rw-r--r--
2021-03-10 14:36
dev-dep-update
292
B
-rw-r--r--
2021-03-10 14:36
docs-build.js
825
B
-rw-r--r--
2021-03-10 14:36
gen-changelog
420
B
-rw-r--r--
2021-03-10 14:36
gen-dev-ignores.js
350
B
-rw-r--r--
2021-03-10 14:36
install.sh
5.47
KB
-rw-r--r--
2021-03-10 14:36
maketest
1.8
KB
-rw-r--r--
2021-03-10 14:36
pr
3.96
KB
-rw-r--r--
2021-03-10 14:36
publish-tag.js
151
B
-rw-r--r--
2021-03-10 14:36
release.sh
889
B
-rw-r--r--
2021-03-10 14:36
relocate.sh
673
B
-rw-r--r--
2021-03-10 14:36
update-authors.sh
197
B
-rw-r--r--
2021-03-10 14:36
update-dist-tags.js
3.46
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
#!/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