;bin: remove obsolete _FLAGS marker from help
This commit is contained in:
parent
43dd0cfc5d
commit
895a52b745
@ -26,8 +26,6 @@ cmdmode :: Mode RawOpts
|
|||||||
cmdmode = hledgerCommandMode
|
cmdmode = hledgerCommandMode
|
||||||
[s| check-postable
|
[s| check-postable
|
||||||
Check that no postings are made to accounts with a postable:(n|no) tag.
|
Check that no postings are made to accounts with a postable:(n|no) tag.
|
||||||
|
|
||||||
_FLAGS
|
|
||||||
|]
|
|]
|
||||||
[]
|
[]
|
||||||
[generalflagsgroup1]
|
[generalflagsgroup1]
|
||||||
|
|||||||
@ -44,8 +44,7 @@ import Hledger.Cli.Script
|
|||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
cmdmode = hledgerCommandMode
|
cmdmode = hledgerCommandMode
|
||||||
-- Command name and help text goes here. Current limitations:
|
-- Command name and help text goes here. Note blank lines will not be displayed.
|
||||||
-- help text must be above _FLAGS, blank lines will not be displayed.
|
|
||||||
[s| hledger-move
|
[s| hledger-move
|
||||||
Print an entry to move funds between accounts, preserving costs and subaccounts
|
Print an entry to move funds between accounts, preserving costs and subaccounts
|
||||||
.
|
.
|
||||||
@ -82,8 +81,6 @@ Examples:
|
|||||||
.
|
.
|
||||||
$ hledger-move $50 assets:checking assets:cash # withdraw cash from bank
|
$ hledger-move $50 assets:checking assets:cash # withdraw cash from bank
|
||||||
$ hledger-move ADA1000 ada:wallet1 ada:wallet2 # move 1000 ADA, keeping lots
|
$ hledger-move ADA1000 ada:wallet1 ada:wallet2 # move 1000 ADA, keeping lots
|
||||||
|
|
||||||
_FLAGS
|
|
||||||
|]
|
|]
|
||||||
{- NOT YET IMPLEMENTED:
|
{- NOT YET IMPLEMENTED:
|
||||||
|
|
||||||
|
|||||||
@ -26,7 +26,6 @@ import Hledger.Cli.Script
|
|||||||
cmdmode = hledgerCommandMode
|
cmdmode = hledgerCommandMode
|
||||||
[s| print-location
|
[s| print-location
|
||||||
Like print, but adds tags showing the file path and location of transactions.
|
Like print, but adds tags showing the file path and location of transactions.
|
||||||
_FLAGS
|
|
||||||
|]
|
|]
|
||||||
[]
|
[]
|
||||||
[generalflagsgroup1]
|
[generalflagsgroup1]
|
||||||
|
|||||||
@ -15,7 +15,7 @@ import qualified "text" Data.Text as T
|
|||||||
import qualified "text" Data.Text.IO as T
|
import qualified "text" Data.Text.IO as T
|
||||||
|
|
||||||
cmdmode = hledgerCommandMode (unlines
|
cmdmode = hledgerCommandMode (unlines
|
||||||
-- Command name, then --help text, then _FLAGS; empty help lines get stripped:
|
-- Command name, then --help text. Note, empty help lines get stripped.
|
||||||
["register-match"
|
["register-match"
|
||||||
,"Show the register item(s) with maximum (or with --invert, minimum) balance."
|
,"Show the register item(s) with maximum (or with --invert, minimum) balance."
|
||||||
,"Usage: hledger-register-max [REGISTERARGS]"
|
,"Usage: hledger-register-max [REGISTERARGS]"
|
||||||
@ -25,8 +25,6 @@ cmdmode = hledgerCommandMode (unlines
|
|||||||
,"$ hledger-register-max -f examples/bcexample.hledger -H checking"
|
,"$ hledger-register-max -f examples/bcexample.hledger -H checking"
|
||||||
,"2013-01-03 Payroll Assets:US:BofA:Checking 1350.60 USD 8799.22 USD"
|
,"2013-01-03 Payroll Assets:US:BofA:Checking 1350.60 USD 8799.22 USD"
|
||||||
------------------------------------78----------------------------------------
|
------------------------------------78----------------------------------------
|
||||||
,""
|
|
||||||
,"_FLAGS"
|
|
||||||
])
|
])
|
||||||
[] [generalflagsgroup1] [] ([], Just $ argsFlag "[ARGS]") -- or Nothing
|
[] [generalflagsgroup1] [] ([], Just $ argsFlag "[ARGS]") -- or Nothing
|
||||||
|
|
||||||
|
|||||||
@ -28,7 +28,7 @@ import qualified "text" Data.Text as T
|
|||||||
import qualified "text" Data.Text.IO as T
|
import qualified "text" Data.Text.IO as T
|
||||||
|
|
||||||
cmdmode = hledgerCommandMode (unlines
|
cmdmode = hledgerCommandMode (unlines
|
||||||
-- Command name, then --help text, then _FLAGS; empty help lines get stripped:
|
-- Command name, then --help text. Note, empty help lines get stripped.
|
||||||
["script-example"
|
["script-example"
|
||||||
,"This is an example of a (hledger-lib-using) hledger script."
|
,"This is an example of a (hledger-lib-using) hledger script."
|
||||||
,"Usage: hledger-script-example [OPTS] [ARGS]"
|
,"Usage: hledger-script-example [OPTS] [ARGS]"
|
||||||
@ -39,8 +39,6 @@ cmdmode = hledgerCommandMode (unlines
|
|||||||
,"$ hledger-script-example --help"
|
,"$ hledger-script-example --help"
|
||||||
,"(this help)"
|
,"(this help)"
|
||||||
------------------------------------78----------------------------------------
|
------------------------------------78----------------------------------------
|
||||||
,""
|
|
||||||
,"_FLAGS"
|
|
||||||
])
|
])
|
||||||
[] [generalflagsgroup1] [] ([], Just $ argsFlag "[ARGS]") -- or Nothing
|
[] [generalflagsgroup1] [] ([], Just $ argsFlag "[ARGS]") -- or Nothing
|
||||||
|
|
||||||
@ -89,8 +87,8 @@ main = do
|
|||||||
-- Using [s|...|] for multiline string literals (requires string-qq package and {-# LANGUAGE QuasiQuotes #-}):
|
-- Using [s|...|] for multiline string literals (requires string-qq package and {-# LANGUAGE QuasiQuotes #-}):
|
||||||
|
|
||||||
-- cmdmode = hledgerCommandMode (unlines
|
-- cmdmode = hledgerCommandMode (unlines
|
||||||
-- -- Command name, then --help text, then _FLAGS; empty help lines get stripped:
|
-- -- Command name, then --help text. Note, empty help lines get stripped.
|
||||||
-- [s| script-example
|
-- [s| script-example
|
||||||
-- This is an example of a (hledger-lib-using) hledger script."
|
-- This is an example of a (hledger-lib-using) hledger script."
|
||||||
-- Usage: hledger-script-example [OPTS] [ARGS]"
|
-- Usage: hledger-script-example [OPTS] [ARGS]"
|
||||||
-- or: hledger script-example -- [OPTS] [ARGS]"
|
-- or: hledger script-example -- [OPTS] [ARGS]"
|
||||||
@ -99,8 +97,6 @@ main = do
|
|||||||
-- Examples:"
|
-- Examples:"
|
||||||
-- $ hledger-script-example --help"
|
-- $ hledger-script-example --help"
|
||||||
-- (this help)"
|
-- (this help)"
|
||||||
--
|
|
||||||
-- _FLAGS
|
|
||||||
-- |]
|
-- |]
|
||||||
-- ------------------------------------78----------------------------------------
|
-- ------------------------------------78----------------------------------------
|
||||||
-- [] [generalflagsgroup1] [] ([], Just $ argsFlag "[ARGS]") -- or Nothing
|
-- [] [generalflagsgroup1] [] ([], Just $ argsFlag "[ARGS]") -- or Nothing
|
||||||
|
|||||||
@ -43,8 +43,6 @@ It can differ from the others.
|
|||||||
Useful for preprocessing a journal to smooth out irregular revenues or
|
Useful for preprocessing a journal to smooth out irregular revenues or
|
||||||
expenses in daily/weekly/monthly reports, eg:
|
expenses in daily/weekly/monthly reports, eg:
|
||||||
hledger smooth revenues:consulting | hledger -f- incomestatement -W
|
hledger smooth revenues:consulting | hledger -f- incomestatement -W
|
||||||
|
|
||||||
_FLAGS
|
|
||||||
|]
|
|]
|
||||||
[]
|
[]
|
||||||
[generalflagsgroup1]
|
[generalflagsgroup1]
|
||||||
|
|||||||
@ -18,7 +18,6 @@ cmdmode = hledgerCommandMode
|
|||||||
[s| swap-dates
|
[s| swap-dates
|
||||||
Swap date and date2, on transactions which have date2 defined.
|
Swap date and date2, on transactions which have date2 defined.
|
||||||
(Does not yet swap posting dates.)
|
(Does not yet swap posting dates.)
|
||||||
_FLAGS
|
|
||||||
|]
|
|]
|
||||||
[]
|
[]
|
||||||
[generalflagsgroup1]
|
[generalflagsgroup1]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user