From 3d1b94998a0aff3d08cf8648ae977614412e8138 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 15 Dec 2013 14:02:23 -0400 Subject: Add plumbing-level lookupkey command. --- Command/LookupKey.hs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Command/LookupKey.hs (limited to 'Command') diff --git a/Command/LookupKey.hs b/Command/LookupKey.hs new file mode 100644 index 000000000..7964213fe --- /dev/null +++ b/Command/LookupKey.hs @@ -0,0 +1,26 @@ +{- git-annex command + - + - Copyright 2013 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} + +module Command.LookupKey where + +import Common.Annex +import Command +import Annex.CatFile +import Types.Key + +def :: [Command] +def = [notBareRepo $ + command "lookupkey" (paramRepeating paramFile) seek + SectionPlumbing "looks up key used for file"] + +seek :: [CommandSeek] +seek = [withStrings start] + +start :: String -> CommandStart +start file = do + liftIO . maybe exitFailure (putStrLn . key2file) =<< catKeyFile file + stop -- cgit v1.2.3