5 linux commands
cd
- changes folder or directory in terminal
- usage
ls
- list files and direcctory in the current library
- usage
chmod
- used to change permissions for a file or directory in a linux machine, For example three permissions are read , write , execute.
- usage
chmod +rwx filename
chmod --rx filename
chown
- the chown or “change owner” command is used to change owner of the files or directories
- usage
pwd
- the pwd or “print working directory is used to show the location in current terminal
- usage
```bash
pwd
```
-
output
pwd
/home/aditya/homework
this is 5 commonly used commands in linux.