git-annex/Command/LookupKey.hs

28 lines
545 B
Haskell
Raw Normal View History

2013-12-15 18:02:23 +00:00
{- git-annex command
-
- Copyright 2013 Joey Hess <id@joeyh.name>
2013-12-15 18:02:23 +00:00
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.LookupKey where
import Command
import Annex.CatFile
cmd :: Command
cmd = notBareRepo $ noCommit $
command "lookupkey" SectionPlumbing
"looks up key used for file"
(paramRepeating paramFile)
(batchable run (pure ()))
2013-12-15 18:02:23 +00:00
run :: () -> String -> Annex Bool
run _ file = do
mk <- catKeyFile file
case mk of
Just k -> do
liftIO $ putStrLn $ key2file k
return True
Nothing -> return False