Cross-Platform Command Reference
This reference contains the Termux commands used throughout the academy.
This reference contains the Termux commands used throughout the academy.
| Task | Termux command |
|---|---|
| Current folder | pwd |
| List files | ls -la |
| Change folder | cd folder |
| Read text | cat file.txt |
| Copy / move | cp a b · mv a b |
| Find files | find . -type f |
| Search text | grep -Rni 'text' . |
| Hash a file | sha256sum file |
| Python version | python --version |
| Start academy | python Smartphone-Academy.py serve |
Deletion is immediate
Confirm pwd and the target path before using rm. Avoid recursive deletion until you can explain every path component.