Termux Basic Commands List with Examples

Termux basic commands help you manage files, folders, and navigate your system easily. These are the first commands every beginner should learn.

Basic Termux Commands List

CommandUseExample
pwdShow current directorypwd
lsList files and foldersls
ls -aShow hidden filesls -a
cdChange directorycd foldername
cd ..Go back one foldercd ..
cd ~Go to home directorycd ~
mkdirCreate foldermkdir myfolder
rmdirDelete empty folderrmdir myfolder
touchCreate filetouch file.txt
cpCopy filecp file.txt copy.txt
mvMove/Rename filemv old.txt new.txt
rmDelete filerm file.txt
rm -rDelete folderrm -r foldername
clearClear screenclear
exitExit Termuxexit

These basic commands are enough to start using Termux. Once you understand these, you can easily move to advanced tools and commands.

Quick Examples

Create a folder and go inside:

mkdir test
cd test

Create a file:

touch hello.txt

Check files:

ls

Delete file:

rm hello.txt

Use help command to understand any command:

ls --help
SHARE THIS POST: