Linux-Dateibefehl


  Übersetzungsergebnisse:

Akte

Englisch [faɪl] amerikanisch [faɪl]

vt. Akte (Scheidungsverfahren oder andere Klagen)

vi ); einen Antrag stellen

n. Datei; Dritte Person Singular: Dateien Präsens: abgelegt

Linux-DateibefehlSyntax

Funktion: Der Befehl file wird zur Identifizierung von Dateitypen verwendet. Über den Dateibefehl können wir den Typ der Datei identifizieren.

Syntax: Datei [-bcLvz][-f <Name der Datei>][-m <magische Zahlendatei>...][Datei oder Verzeichnis...]

Linux-DateibefehlBeispiel

Dateityp anzeigen:

[root@localhost ~]# file install.log
install.log: UTF-8 Unicode text[root@localhost ~]# file -b install.log      <== 不显示文件名称UTF-8 Unicode text[root@localhost ~]# file -i install.log      <== 显示MIME类别。install.log: text/plain; charset=utf-8[root@localhost ~]# file -b -i install.log
text/plain; charset=utf-8

Symlink-Dateityp anzeigen

[root@localhost ~]# ls -l /var/mail
lrwxrwxrwx 1 root root 10 08-13 00:11 /var/mail -> spool/mail[root@localhost ~]# file /var/mail/var/mail: symbolic link to `spool/mail'
[root@localhost ~]# file -L /var/mail
/var/mail: directory
[root@localhost ~]# file /var/spool/mail
/var/spool/mail: directory
[root@localhost ~]# file -L /var/spool/mail
/var/spool/mail: directory

Beliebte Empfehlungen

Heim

Videos

Fragen und Antworten