¿Existe una funcionalidad similar de "Obtener información" (Cmd + I) de Mac OS X Terminal.app?


21

Me gustaría preguntar si en OS X hay una funcionalidad similar de "Obtener información" (Cmd + I) pero desde Mac OS X Terminal.app. Me refiero a algo como finderGetInfo /path/to/a/file.ext, que generará la información del archivo pero en la consola del terminal. Me gusta esto:

ingrese la descripción de la imagen aquí

Pero desde la línea de comando:

Machine:~ antony$ finderGetInfo /Users/antony/file.ext
General:
   Kind: Document
   Size: 29 bytes (4 KB on disk)
   Where: /Users/antony
   Created: Today 08:58
   Modified: Today 08:58
   Stationery pad: NO
   Locked: NO
More Info:
   --
Name & Extension: file.ext
Comments: ...
etc...

Sería muy útil al crear algunas herramientas automáticas que necesitan extrapolar información útil de un archivo de cualquier tipo.

¿Es posible en OS X?

Respuestas:


32

mdlsenumera los metadatos del archivo. Un ejemplo a continuación para una carpeta

kMDItemContentCreationDate     = 2011-11-20 04:05:42 +0000
kMDItemContentModificationDate = 2014-10-22 01:52:53 +0000
kMDItemContentType             = "public.folder"
kMDItemContentTypeTree         = (
    "public.folder",
    "public.directory",
    "public.item"
)
kMDItemDateAdded               = 2014-10-17 09:19:38 +0000
kMDItemDisplayName             = "temp"
kMDItemFSContentChangeDate     = 2014-10-22 01:52:53 +0000
kMDItemFSCreationDate          = 2011-11-20 04:05:42 +0000
kMDItemFSCreatorCode           = ""
kMDItemFSFinderFlags           = 0
kMDItemFSHasCustomIcon         = (null)
kMDItemFSInvisible             = 0
kMDItemFSIsExtensionHidden     = 0
kMDItemFSIsStationery          = (null)
kMDItemFSLabel                 = 0
kMDItemFSName                  = "temp"
kMDItemFSNodeCount             = 96
kMDItemFSOwnerGroupID          = 80
kMDItemFSOwnerUserID           = 501
kMDItemFSSize                  = (null)
kMDItemFSTypeCode              = ""
kMDItemKind                    = "Folder"
kMDItemLastUsedDate            = 2014-12-03 03:57:48 +0000
kMDItemUseCount                = 2
kMDItemUsedDates               = (
    "2014-10-25 13:00:00 +0000",
    "2014-12-02 13:00:00 +0000"
)

Esta es realmente una buena noticia, ¡gracias por responder tan rápido!
user3019105

¿Habría una forma de imprimir una determinada propiedad?
Karoh

1
@Horak intenta leerman mdls
Milliways

1
mdls -name kMDItemContentCreationDate target_file_name_aquí hay un ejemplo.
jasonleonhard
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.