ls command
About ls command full form = list With the help of ls command, list the contents present inside the directory. Command: ls [OPTION] [FILE_PATH] Note: Default value of FILE_PATH is current working directory. Some useful options with examples are given below - 1. ls : Lists files and directories present inside a directory with no options. 2. ls -a (or ls --all): Some files are hidden inside the directory, they are called hidden files. In such a situation, with the help of -a(--all) option, you can list all types of files whether hidden or not. OR When we ran ls command then .f.txt , .k.txt files and .game directory were not display but with the help of -a( --all) option all files are display. 3. ls -l : With the help of this command, the files present inside the directory can be displayed in long format. Several columns are visible here, the first character of the first column indicates the type of file. The file types a...