Basic Commands in Linux - To display list of files and folders in a directory or folder
ls
ls is used to display the list of files in current folder. here you can see only few option . To know more options please comment below.
ls - list of files in current folder.
ls
ls -a - this will list all the files including hidden one. hidden files will start with . (.filename.txt) .
ls -a
ls -l - this will display size,access,owner,date modified details of files or folders
ls -lrt
Comments
Post a Comment