name: lsfrom version: 0.1 synopsis: List dir files starting from a specific name description: `lsfrom` lists files in a directory that start with a particular sequence of characters and those after it with respect to locale collation. This can be useful for continuing a script on the files in a dir after a failure, etc. license: BSD3 license-file: LICENSE author: Jens Petersen maintainer: Jens Petersen copyright: 2018,2021 Jens Petersen category: Utility homepage: https://github.com/juhp/lsfrom bug-reports: https://github.com/juhp/lsfrom/issues build-type: Simple cabal-version: 1.18 extra-doc-files: ChangeLog.md README.md source-repository head type: git location: https://github.com/juhp/lsfrom.git executable lsfrom main-is: Main.hs other-modules: Paths_lsfrom build-depends: base < 5, filepath, simple-cmd, simple-cmd-args default-language: Haskell2010 ghc-options: -fwarn-missing-signatures -Wall if impl(ghc >= 8.0) ghc-options: -Wcompat -Widentities -Wincomplete-uni-patterns -Wincomplete-record-updates -Wredundant-constraints if impl(ghc >= 8.2) ghc-options: -fhide-source-paths if impl(ghc >= 8.4) ghc-options: -Wmissing-export-lists -Wpartial-fields if impl(ghc >= 8.10) ghc-options: -Wunused-packages test-suite test main-is: tests.hs type: exitcode-stdio-1.0 hs-source-dirs: test default-language: Haskell2010 ghc-options: -Wall build-depends: base >= 4 && < 5 , directory , filepath , simple-cmd