linux Basic Command
Linux Basic Command
Linux is most popular operating system in the world.It is Command Base. Let's see some basic Linux command....1. ls:
we can see all created file using ls command2. mkdir
mkdir is used to creating folder/Deroctorymkidr Folder Name
mkdir Linux
3. touch using for creating file
touch File Name
touch Demo.txt
5. echo is used to written the creating file
echo content >> File Name
echo Hello Demo >>Demo.txt
6.cat is used to see file content
cat File Name
cat Demo.txt
7. cmd is used to access folder
cmd Folder Name
cmd Linux
8. cp is used to copy content
cp [optional] source destination
9. mv is used to move or rename
mv [optional] source destination
10.rm is used to remove folder or file
rm File Name/Folder Name
No comments