├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE.md ├── LICENSE_MIT ├── README.md ├── extract_usage.py ├── scripts ├── drun.sh ├── lint.sh ├── prettify.sh ├── tadb └── tsu_adb_helper └── shell └── tsu.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE_MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/LICENSE_MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/README.md -------------------------------------------------------------------------------- /extract_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/extract_usage.py -------------------------------------------------------------------------------- /scripts/drun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/scripts/drun.sh -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/prettify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/scripts/prettify.sh -------------------------------------------------------------------------------- /scripts/tadb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/scripts/tadb -------------------------------------------------------------------------------- /scripts/tsu_adb_helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/scripts/tsu_adb_helper -------------------------------------------------------------------------------- /shell/tsu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/tsu/HEAD/shell/tsu.sh --------------------------------------------------------------------------------