Hacking using android continues…

codeerror
1 min readJun 16, 2020

Now let’s find the factor of any number, for that install below package by typing
pkg install coreutils
After that to find the factor of any number then type factor number
eg: factor 100
Lets play with text on termux
we can write text in different styles, firstly try with the figlet
Type
pkg install figlet
After that type figlet and type the text you want to write in figlet style
For Colourful text, you have to install toilet package for that, type below command
pkg install toilet

After installing toilet type toilet "your text"
You can also try colour combination eg
toilet -f mono12 -F gay "Your Text"
Calendar in termux, if you can't to see the calendar in termux then type
cal
To see the calendar
To see the time and date just type date in termux
Now let's talk about some helpful commands
apt update
This command used to update the termux built-in busybox and other packages
apt upgrade
This command is used to upgrade the packages to latest
Accessing and managing files in termux
To manage and access files in termux then you must type below command
termux-setup-storage
To access a directory cd command is used
The termux default directory is located at /data/data/com.termux/
You can access it anytime by typing cd $home

--

--