2013-12-15 14:02:23 -04:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2015-01-21 12:50:09 -04:00
|
|
|
- Copyright 2013 Joey Hess <id@joeyh.name>
|
2013-12-15 14:02:23 -04:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.LookupKey where
|
|
|
|
|
|
|
|
import Common.Annex
|
|
|
|
import Command
|
2015-05-06 13:44:53 -04:00
|
|
|
import CmdLine.Batch
|
2013-12-15 14:02:23 -04:00
|
|
|
import Annex.CatFile
|
|
|
|
import Types.Key
|
|
|
|
|
2015-07-08 12:33:27 -04:00
|
|
|
cmd :: Command
|
|
|
|
cmd = withOptions [batchOption] $ notBareRepo $ noCommit $ noMessages $
|
2015-07-08 15:08:02 -04:00
|
|
|
command "lookupkey" SectionPlumbing
|
|
|
|
"looks up key used for file"
|
|
|
|
(paramRepeating paramFile) (withParams seek)
|
2013-12-15 14:02:23 -04:00
|
|
|
|
2015-07-08 15:08:02 -04:00
|
|
|
seek :: CmdParams -> CommandSeek
|
2015-05-06 13:44:53 -04:00
|
|
|
seek = batchable withStrings start
|
2013-12-15 14:02:23 -04:00
|
|
|
|
2015-05-06 13:44:53 -04:00
|
|
|
start :: Batchable String
|
|
|
|
start batchmode file = do
|
|
|
|
maybe (batchBadInput batchmode) (liftIO . putStrLn . key2file)
|
|
|
|
=<< catKeyFile file
|
2013-12-15 14:02:23 -04:00
|
|
|
stop
|