mirror of
https://github.com/bdrtr/ServerFinder.git
synced 2025-11-08 18:52:47 +00:00
23 lines
207 B
Bash
Executable File
23 lines
207 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
BASE_DIR=/usr/local/bin/ServerFinder
|
|
|
|
source "$BASE_DIR/finder.sh"
|
|
source "$BASE_DIR/starter.sh"
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
result=$(find_server_files)
|
|
starter_main $result
|
|
|
|
|
|
}
|
|
|
|
|
|
main
|
|
|
|
|
|
|