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 Common.Annex
|
|
|
|
import Command
|
2015-05-06 17:44:53 +00:00
|
|
|
import CmdLine.Batch
|
2013-12-15 18:02:23 +00:00
|
|
|
import Annex.CatFile
|
|
|
|
import Types.Key
|
|
|
|
|
2015-07-08 16:33:27 +00:00
|
|
|
cmd :: Command
|
|
|
|
cmd = withOptions [batchOption] $ notBareRepo $ noCommit $ noMessages $
|
2015-07-08 19:08:02 +00:00
|
|
|
command "lookupkey" SectionPlumbing
|
|
|
|
"looks up key used for file"
|
|
|
|
(paramRepeating paramFile) (withParams seek)
|
2013-12-15 18:02:23 +00:00
|
|
|
|
2015-07-08 19:08:02 +00:00
|
|
|
seek :: CmdParams -> CommandSeek
|
2015-05-06 17:44:53 +00:00
|
|
|
seek = batchable withStrings start
|
2013-12-15 18:02:23 +00:00
|
|
|
|
2015-05-06 17:44:53 +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
|