Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
node_modules /
npm /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
changelog.js
2.89
KB
-rw-r--r--
2017-11-03 01:22
clean-old.sh
4.16
KB
-rwxr-xr-x
2016-10-13 09:50
dep-update
167
B
-rwxr-xr-x
2017-11-03 01:22
dev-dep-update
161
B
-rwxr-xr-x
2017-11-03 01:22
doc-build.sh
1.96
KB
-rwxr-xr-x
2017-11-03 01:22
gen-changelog
420
B
-rwxr-xr-x
2017-11-03 01:22
index-build.js
1.66
KB
-rwxr-xr-x
2017-11-03 01:22
install.sh
5.32
KB
-rwxr-xr-x
2017-11-03 01:22
maketest
2
KB
-rwxr-xr-x
2017-11-03 01:22
publish-tag.js
151
B
-rw-r--r--
2017-11-03 01:22
release.sh
681
B
-rw-r--r--
2017-11-03 01:22
relocate.sh
665
B
-rwxr-xr-x
2016-10-13 09:50
update-authors.sh
183
B
-rwxr-xr-x
2017-09-28 04:27
Save
Rename
#!/bin/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