linux file list related commands

List all files in the current folder

ls 

Insert picture description here

List all files in the current folder (including hidden files)

ls -a 

Insert picture description here

List the detailed information of all files in the current folder (permissions, users, size, time, etc.)

ls -l	

Insert picture description here

ll is equivalent to ls -l, the figure is the same as above

Guess you like

Origin blog.csdn.net/nongminkouhao/article/details/108004266