Esiste una funzionalità simile a "Ottieni informazioni" (Cmd + I) da Mac OS X Terminal.app?

21

Vorrei chiedere se in OS X esiste una funzionalità simile a "Ottieni informazioni" (Cmd + I) ma da Mac OS X Terminal.app? Intendo qualcosa come finderGetInfo /path/to/a/file.ext che invierà le informazioni per il file ma nella console del terminale? In questo modo:

Ma dalla riga di 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...

Sarebbe molto utile quando crei alcuni strumenti automatici che devono estrapolare alcune informazioni utili da un file di qualsiasi tipo.

È possibile in OS X?

    
posta user3019105 06.01.2015 - 07:07
fonte

1 risposta

31

mdls elenca i metadati del file. Un esempio qui sotto per una cartella

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"
)
    
risposta data 06.01.2015 - 07:36
fonte

Leggi altre domande sui tag