Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Cover image for Living in the Shell #5; ls (List Files/Directories)
Babak K. Shandiz
Babak K. Shandiz

Posted on • Originally published atbabakks.github.io on

     

Living in the Shell #5; ls (List Files/Directories)

ls 🚚

Lists directory content.

Long list (detailed format)-l

cd ~&&ls-l
Enter fullscreen modeExit fullscreen mode
drwxr-xr-x 5 babak babak       4096 Nov  1 12:49 Desktopdrwxr-xr-x 9 babak babak       4096 Nov 21 18:49 Documentsdrwxr-xr-x 2 babak babak      20480 Nov 23 17:21 Pictures...

Show directories first--group-directories-first

cd ~&&ls--group-directories-first
Enter fullscreen modeExit fullscreen mode

List directory itself, not its content-d

cd ~&&ls-lhd Documents
Enter fullscreen modeExit fullscreen mode
drwxr-xr-x 9 babak babak 4.0K Nov 21 18:49 Documents

List all files (include dot-files)-a

cd ~&&ls-a
Enter fullscreen modeExit fullscreen mode

Print human-readable sizes-h

cd ~&&ls-lh
Enter fullscreen modeExit fullscreen mode
drwxr-xr-x 5 babak babak 4.0K Nov  1 12:49 Desktopdrwxr-xr-x 9 babak babak 4.0K Nov 21 18:49 Documentsdrwxr-xr-x 2 babak babak  20K Nov 23 17:21 Pictures...

Sort by time-t

cd ~&&ls-lht
Enter fullscreen modeExit fullscreen mode
drwxr-xr-x 2 babak babak  20K Nov 23 17:21 Picturesdrwxr-xr-x 9 babak babak 4.0K Nov 21 18:49 Documentsdrwxr-xr-x 5 babak babak 4.0K Nov  1 12:49 Desktop

Sort by size-s

cd ~&&ls-lhs
Enter fullscreen modeExit fullscreen mode

Reverse sort order-r

cd ~&&ls-lhsr
Enter fullscreen modeExit fullscreen mode
drwxr-xr-x 2 babak babak  20K Nov 23 17:21 Picturesdrwxr-xr-x 9 babak babak 4.0K Nov 21 18:49 Documentsdrwxr-xr-x 5 babak babak 4.0K Nov  1 12:49 Desktop

Top comments(2)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss
CollapseExpand
 
arunteja profile image
Arun Teja
  • Joined

I always usels -ltr, as it show the last modified one at the bottom

CollapseExpand
 
waylonwalker profile image
Waylon Walker
👋 Hey there, I am Waylon WalkerI am a Husband, Father of two beautiful children, Senior Python Developer currently working in the Data Engineering platform space. I am a continuous learner, and sha
  • Location
    Peoria, Illinois
  • Work
    Python Dev
  • Joined

My favorites are

ls -laht
ls -1

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

I'm Babak - a C#, TS enthusiast. Also, I love databases, and of course SQL. Wish to learn new exciting things here.
  • Joined

More fromBabak K. Shandiz

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp