Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.69
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
.nvm /
test /
sourcing /
Delete
Unzip
Name
Size
Permission
Date
Action
Sourcing nvm.sh global alias bug
863
B
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh should keep version if one is active
592
B
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh should use the default if available and no nvm node is loaded
1.13
KB
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh with --install and .nvmrc should install it
850
B
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh with --install should install the default
1
KB
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh with --no-use should not use anything
992
B
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh with no default should return 0
314
B
-rwxrwxr-x
2025-06-22 16:20
setup
373
B
-rwxrwxr-x
2025-06-22 16:20
teardown
112
B
-rwxrwxr-x
2025-06-22 16:20
Save
Rename
#!/bin/sh die () { echo "$@" ; exit 1; } if [ -n "${ZSH_VERSION-}" ]; then # these are set by omz: https://github.com/ohmyzsh/ohmyzsh/tree/1ac40cd4456230f09bf0258b173304929d118992/plugins/common-aliases alias -g R='| less -S' alias -g G='| less -S' # these are set by yadr: https://github.com/skwp/dotfiles/blob/5c487de9b81cd4265ecc9df74477e410ffbda6a1/zsh/zsh-aliases.zsh alias -g C='| wc -l' alias -g H='| head' alias -g L="| less" alias -g N="| /dev/null" alias -g S='| sort' alias -g G='| grep' fi OUTPUT=$(\. ../../nvm.sh || echo 'sourcing returned nonzero exit code') UNEXPECTED_OUTPUT="sourcing returned nonzero exit code" [ "_$OUTPUT" != "_$UNEXPECTED_OUTPUT" ] || die "Sourcing nvm.sh should not fail" if [ -n "${ZSH_VERSION-}" ]; then unalias \R unalias \G unalias \C unalias \H unalias \L unalias \N unalias \S fi