├── img └── README.md ├── docs ├── README.md └── md.sh ├── run.sh ├── .github └── FUNDING.yml ├── README.md └── index.html /img/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # HAI # 2 | -------------------------------------------------------------------------------- /docs/md.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd 3 | git clone https://github.com/BAIT-LINUX/sourcode.git 4 | cd sourcode 5 | tar -xzvf BAIT_LINUX.tar.gz 6 | mv BAIT_LINUX /data/data/com.termux/files/home/ 7 | cd 8 | rm -rv sourcode -y 9 | cd BAIT_LINUX 10 | ./run 11 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | clear 2 | echo "" 3 | echo "" 4 | echo "\33[1;31m █▀▀█ █▀▀█ ▀█▀ ▀▀█▀▀\33[36;1m┏┓░┏━━┓┏━┳┓┏┳┓┏┓┏┓" 5 | echo "\33[1;31m █▀▀▄ █▄▄█ ░█░ ░▒█░░\33[36;1m┃┃░┗┃┃┛┃┃┃┃┃┃┃┗┓┏┛" 6 | echo "\33[1;31m █▄▄█ █░▒█ ▄█▄ ░▒█░░\33[36;1m┃┗┓┏┃┃┓┃┃┃┃┃┃┃┏┛┗┓" 7 | echo "\33[32;1m ███████████████]99%\33[36;1m┗━┛┗━━┛┗┻━┛┗━┛┗┛┗┛" 8 | echo "\33[0m" 9 | cd docs 10 | sh md.sh 11 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
by : ~./Anak Bawang152 | 153 | --------------------------------------------------------------------------------