Heim > Artikel > Betrieb und Instandhaltung > Einfache Bedienung unter Linux-System – Datei- und Verzeichnisattribute anzeigen
ls: Verzeichnisinhalte auflisten (Standard ist das aktuelle Arbeitsverzeichnis)
Format: Befehl [Optionen] [Parameter]
Optionen:
-a: Alle Dateien und Verzeichnisse auflisten (einschließlich versteckter Dateien und Verzeichnisse)
-l: Liste im Langformat
-d: Nur das Verzeichnis selbst auflisten
-h: Wird mit der Option -l verwendet, um die Dateigröße auf benutzerfreundliche Weise anzuzeigen (wenn -h nicht hinzugefügt wird, wird die Standarddateigröße in Bytes angezeigt); Beispiel:
[root@uni test]#
ls dir file file1[root@uni test]#
ls -l
Gesamtnutzung 10248drwxr- xr-x 2 root root 4096 16. Juli 15:30 dir
-rw-r--r-- 1 root root 7 16. Juli 15:30 file
-rw-r-- r-- 1 root root 10485760 16. Juli 15:32 file1
[root@uni test]#
ls -lh
Gesamtnutzung 11Mdrwxr-xr-x 2 root root 4.0K 16. Juli 15:30 dir
-rw-r--r-- 1 root root 7 16. Juli 15:30 file
-rw-r--r-- 1 root root 10M 16. Juli 15:32 file1
[root @uni test]#
ls -alh
Gesamtnutzung 11Mdrwxr-xr-x 3 root root 4.0K 16. Juli 15:32 .
drwxr-xr-x. 3 root root 4.0K 16. Juli 14:04 ..
drwxr-xr-x 2 root root 4.0K 16. Juli 15:30 dir
-rw-r- -r-- 1 root root 7 16. Juli 15:30 file
-rw-r--r-- 1 root root 10M 16. Juli 15:32 file1
[root@uni test]#
ls -ldh
drwxr-xr-x 3 root root 4.0K 16. Juli 15:32 .
Das obige ist der detaillierte Inhalt vonEinfache Bedienung unter Linux-System – Datei- und Verzeichnisattribute anzeigen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!