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

21

Me gustaría preguntar si en OS X hay una funcionalidad similar a "Obtener información" (Cmd + I) pero desde Mac OS X Terminal.app. ¿Quiero decir algo como finderGetInfo /path/to/a/file.ext que generará las informaciones para el archivo pero en la consola de la terminal? Así:

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 a la hora de crear algunas herramientas automáticas que necesiten extrapolar información útil de un archivo de cualquier tipo.

¿Es posible en OS X?

    
pregunta user3019105 06.01.2015 - 07:07

1 respuesta

31

mdls enumera los metadatos del archivo. Una muestra de abajo 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"
)
    
respondido por el Milliways 06.01.2015 - 07:36

Lea otras preguntas en las etiquetas