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-Dateibefehl Syntax

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-Dateibefehl Beispiel

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