git-annex/Command/LookupKey.hs

30 lines
671 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 Common.Annex
import Command
import CmdLine.Batch
2013-12-15 18:02:23 +00:00
import Annex.CatFile
import Types.Key
cmd :: Command
cmd = withOptions [batchOption] $ notBareRepo $ noCommit $ noMessages $
command "lookupkey" SectionPlumbing
"looks up key used for file"
(paramRepeating paramFile) (withParams seek)
2013-12-15 18:02:23 +00:00
seek :: CmdParams -> CommandSeek
seek = batchable withStrings start
2013-12-15 18:02:23 +00:00
start :: Batchable String
start batchmode file = do
maybe (batchBadInput batchmode) (liftIO . putStrLn . key2file)
=<< catKeyFile file
2013-12-15 18:02:23 +00:00
stop