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.64
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
.nvm /
Delete
Unzip
Name
Size
Permission
Date
Action
.cache
[ DIR ]
drwxrwxr-x
2025-06-22 16:21
.git
[ DIR ]
drwxrwxr-x
2025-06-22 16:20
.github
[ DIR ]
drwxrwxr-x
2025-06-22 16:20
alias
[ DIR ]
drwxrwxr-x
2025-06-22 16:25
test
[ DIR ]
drwxrwxr-x
2025-06-22 16:20
versions
[ DIR ]
drwxrwxr-x
2025-06-22 16:25
.dockerignore
155
B
-rw-rw-r--
2025-06-22 16:20
.editorconfig
658
B
-rw-rw-r--
2025-06-22 16:20
.gitattributes
19
B
-rw-rw-r--
2025-06-22 16:20
.gitignore
268
B
-rw-rw-r--
2025-06-22 16:20
.gitmodules
103
B
-rw-rw-r--
2025-06-22 16:20
.mailmap
51
B
-rw-rw-r--
2025-06-22 16:20
.npmrc
19
B
-rw-rw-r--
2025-06-22 16:20
.travis.yml
3.77
KB
-rw-rw-r--
2025-06-22 16:20
CODE_OF_CONDUCT.md
7.38
KB
-rw-rw-r--
2025-06-22 16:20
CONTRIBUTING.md
4.63
KB
-rw-rw-r--
2025-06-22 16:20
Dockerfile
3.52
KB
-rw-rw-r--
2025-06-22 16:20
GOVERNANCE.md
467
B
-rw-rw-r--
2025-06-22 16:20
LICENSE.md
1.09
KB
-rw-rw-r--
2025-06-22 16:20
Makefile
5.28
KB
-rw-rw-r--
2025-06-22 16:20
PROJECT_CHARTER.md
2.87
KB
-rw-rw-r--
2025-06-22 16:20
README.md
47.07
KB
-rw-rw-r--
2025-06-22 16:20
ROADMAP.md
882
B
-rw-rw-r--
2025-06-22 16:20
bash_completion
2.25
KB
-rw-rw-r--
2025-06-22 16:20
install.sh
16.17
KB
-rwxrwxr-x
2025-06-22 16:20
nvm-exec
371
B
-rwxrwxr-x
2025-06-22 16:20
nvm.sh
144.33
KB
-rwxrwxr-x
2025-06-22 16:20
package.json
2.32
KB
-rw-rw-r--
2025-06-22 16:20
rename_test.sh
1.21
KB
-rwxrwxr-x
2025-06-22 16:20
update_test_mocks.sh
2.42
KB
-rwxrwxr-x
2025-06-22 16:20
Save
Rename
#! /usr/bin/env bash find_name(){ find test -name "*[\\/:\*\?\"<>\|]*" -o -name "*." } check_name() { if [ "$(find_name | wc -l)" != "0" ]; then printf '%s\n\n' "The following filenames contain unwanted characters:" find_name printf '\n%s\n%s\n' "Please run ./rename_test.sh" "If the problem persist, please open an issue." exit 1 else echo "Ok" fi } rename_test() { local filename local new_filename while read -r filename; do # Even though it looks < and > are replaced by the same < and >, the latters are not ASCII code # If you check with 'cat -v rename_test.sh' you would see 's/</M-KM-^B/g' and 's/>/M-KM-^C/g' # M-KM-^B -> U+02C2 # M-KM-^C -> U+02C3 new_filename=$(echo "$filename" | sed -r \ -e "s/\"/'/g" \ -e 's/</˂/g' \ -e 's/>/˃/g' \ -e 's/^(.*)\.$/\1/' ) printf '%s\n%s\n\n' "$filename" "$new_filename" [ "$filename" != "$new_filename" ] && git mv "$filename" "$new_filename" done < <(find_name) if [ "$(find_name | wc -l)" != "0" ]; then echo "Still some files to treat:" find_name else echo "Done" fi } main() { if [ "$1" = "--check" ]; then check_name else rename_test fi } main "$@"