Basic 5 termux command
Basic 5 termux command
1) Termux- clear screen
For clear all screen content run the clear command
* clear
2) Termux- change directory
cd command use for change our current working directory to another directory, type cd and your directory name. I'm moving in /desktop directory.
cd /desktop
3) Termux- move back directory
If you want one directory to move back by using cd .. you can easily back one directory. and you wanna back to directories use the cd ../../ command
cd ..
cd ../../
4) Termux- creat new file
by using the touch command we can easily create a file
touch <file-name>
5) Termux- history all previous run command
checking all previous run command.
history
Comments
Post a Comment