Add plumbing-level lookupkey examinekey command.

find --format: Added hashdirlower, hashdirmixed, keyname, and mtime format
variables.
This commit is contained in:
Joey Hess 2013-12-15 14:46:29 -04:00
parent 7d5b25515c
commit 2b5b4dcd78
7 changed files with 91 additions and 25 deletions

27
Command/ExamineKey.hs Normal file
View file

@ -0,0 +1,27 @@
{- git-annex command
-
- Copyright 2013 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.ExamineKey where
import Common.Annex
import Command
import qualified Utility.Format
import Command.Find (formatOption, withFormat, showFormatted, keyVars)
import Types.Key
def :: [Command]
def = [noCommit $ noMessages $ withOptions [formatOption] $
command "examinekey" (paramRepeating paramKey) seek
SectionPlumbing "prints information from a key"]
seek :: [CommandSeek]
seek = [withFormat $ \f -> withKeys $ start f]
start :: Maybe Utility.Format.Format -> Key -> CommandStart
start format key = do
showFormatted format (key2file key) (keyVars key)
stop