2010-11-14 16:35:05 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Find where
|
|
|
|
|
|
|
|
import Control.Monad (when)
|
|
|
|
import Control.Monad.State (liftIO)
|
|
|
|
|
|
|
|
import Command
|
|
|
|
import Core
|
|
|
|
|
|
|
|
seek :: [SubCmdSeek]
|
|
|
|
seek = [withDefault "." withFilesInGit start]
|
|
|
|
|
|
|
|
{- Output a list of files. -}
|
|
|
|
start :: SubCmdStartString
|
|
|
|
start file = isAnnexed file $ \(key, _) -> do
|
|
|
|
exists <- inAnnex key
|
2010-11-22 21:51:55 +00:00
|
|
|
when exists $ liftIO $ putStrLn file
|
2010-11-14 16:35:05 +00:00
|
|
|
return Nothing
|