Archive for the 'Linux' Category

Basic Linux commands for Beginner’s

1) ls
This basic command  Use for to see  the list of a directory.
# ls
a) To view details such as the file permissions, user and group owner, last time file was modified
# ls -l
b) Searching  filenames by using wildcards. To list files that start with the letter h, use
 # ls -l h*
2) find
The find command to [...]