Today we are going to start Termux Basics Tutorial, where we will cover Termux Basic Commands from basic to advance. We will also see how can we coustomize our termux like a PRO hacker. In this video, we are going to talk about how we can create a directory, how to list items from one directory to another, and how to navigate through directories. The first command we have is
ls
which lists the items in the current directory.Listing Items in a Directory
The
ls
command simply lists the items in the current directory. For example, if you type ls
in the terminal, you will see a list of files and directories in the current directory.ls
Navigating Through Directories
To navigate through directories, we can use the
cd
command. For example, if you want to change to a directory named "subscribe", you can type cd Subscribe
in the terminal. If you want to go back to the previous directory, you can use the command cd ..
. To go back to the home directory, you can use the command cd ~
.cd
Creating Directories
To create a directory, you can use the
mkdir
command followed by the name of the directory you want to create. For example, if you want to create a directory named "subscribe", you can type "mkdir subscribe" in the terminal.mkdir <name>
Video Link: Termux Basic Commands
Summary
In this video, we learned about listing items in a directory using the
ls
command, navigating through directories using the cd
command, and creating directories using the mkdir
command. In the next video, we will continue exploring more commands and concepts related to directories.