Difference between revisions of "Ls"

From wikieduonline
Jump to navigation Jump to search
 
(13 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{lowercase}}
 
<code>[[wikipedia:ls|ls]]</code> is a command to list files, [[directories]] and [[symbolic links]] in [[Linux]] and Unix-like operating systems include in the <code>[[coreutils]]</code> package in Ubuntu.
 
<code>[[wikipedia:ls|ls]]</code> is a command to list files, [[directories]] and [[symbolic links]] in [[Linux]] and Unix-like operating systems include in the <code>[[coreutils]]</code> package in Ubuntu.
 
* Man page: http://man7.org/linux/man-pages/man1/ls.1.html
 
* Man page: http://man7.org/linux/man-pages/man1/ls.1.html
Line 14: Line 15:
 
* Sort by [[size]]:  
 
* Sort by [[size]]:  
 
** <code>ls -lhS</code>
 
** <code>ls -lhS</code>
** <code>ls -lR | grep '^-' | sort -rnk5</code> (sort will not work if ls is used with -h)
+
** <code>ls -lR | grep '^-' | [[sort]] -rnk5</code> (sort will not work if ls is used with -h)
 
** Including full path: <code>ls -ld $([[find]] ./) | [[sort]] -rnk5 | more</code>
 
** Including full path: <code>ls -ld $([[find]] ./) | [[sort]] -rnk5 | more</code>
 
:::-su: /bin/ls: Argument list too long
 
:::-su: /bin/ls: Argument list too long
 
::: -d list directories themselves, not their contents
 
::: -d list directories themselves, not their contents
 
* <code>ls -i</code> ([[inode]])
 
* <code>ls -i</code> ([[inode]])
 +
* <code>[[ls -1]]</code>
 +
* <code>ls | xargs</code>
  
 
== Flags ==
 
== Flags ==
 
<code>-F</code> appends symbols to filenames. These symbols show useful information about files.<ref>https://unix.stackexchange.com/questions/82357/what-do-the-symbols-displayed-by-ls-f-mean</ref>
 
<code>-F</code> appends symbols to filenames. These symbols show useful information about files.<ref>https://unix.stackexchange.com/questions/82357/what-do-the-symbols-displayed-by-ls-f-mean</ref>
  @ means symbolic link (or that the file has extended attributes).
+
  @ means symbolic link (or that the file has [[extended attributes]]).
 
  * means executable.
 
  * means executable.
 
  = means socket.
 
  = means socket.
Line 29: Line 32:
 
  / means directory.
 
  / means directory.
  
== Related commands ==
+
== Related terms ==
 +
* [[No space left on device]]
 
* <code>[[find]]</code>
 
* <code>[[find]]</code>
 
* <code>[[du]]</code>
 
* <code>[[du]]</code>
 
* <code>[[df]]</code>
 
* <code>[[df]]</code>
* <code>[[chown]]</code>
+
* <code>[[chown]]</code>,  <code>[[chgrp]]</code>
* <code>[[chgrp]]</code>
+
* [[MinIO]]: <code>[[mc ls]]</code>
* <code>[[mc ls]]</code>
+
* <code>[[lscpu]], [[lsusb]], [[lspci]], [[lshw]], [[lsmem]], [[lspci]]</code>
 +
* [[Superblock]]
 +
* [[nvm ls]]
 +
* <code>[[lsdir]]</code> [[alias]]
  
 
== See also ==
 
== See also ==

Latest revision as of 13:30, 28 September 2023

ls is a command to list files, directories and symbolic links in Linux and Unix-like operating systems include in the coreutils package in Ubuntu.


Linux Examples[edit]

  • ls
  • ll (alias from ls -laF)
    • ll -h
  • ls -l
  • ls -la
  • ls -lh
  • ls -lhaR
  • One line listing with sizes using ls and find: ls -ldh $(find /path/to/search/)
  • Sort by size:
    • ls -lhS
    • ls -lR | grep '^-' | sort -rnk5 (sort will not work if ls is used with -h)
    • Including full path: ls -ld $(find ./) | sort -rnk5 | more
-su: /bin/ls: Argument list too long
-d list directories themselves, not their contents

Flags[edit]

-F appends symbols to filenames. These symbols show useful information about files.[1]

@ means symbolic link (or that the file has extended attributes).
* means executable.
= means socket.
| means named pipe.
> means door.
/ means directory.

Related terms[edit]

See also[edit]

  • https://unix.stackexchange.com/questions/82357/what-do-the-symbols-displayed-by-ls-f-mean
  • Advertising: