2013-12-15 18:02:23 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- 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
|
|
|
|
|
2015-07-08 16:33:27 +00:00
|
|
|
cmd :: Command
|
2016-01-29 17:20:24 +00:00
|
|
|
cmd = notBareRepo $ noCommit $ noMessages $
|
2015-07-08 19:08:02 +00:00
|
|
|
command "lookupkey" SectionPlumbing
|
|
|
|
"looks up key used for file"
|
2015-07-12 00:43:45 +00:00
|
|
|
(paramRepeating paramFile)
|
|
|
|
(batchable run (pure ()))
|
2013-12-15 18:02:23 +00:00
|
|
|
|
2015-07-12 00:43:45 +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
|