lsfrom: List dir files starting from a specific name

[ bsd3, program, utility ] [ Propose Tags ]

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.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1, 0.1.1, 0.1.1.1, 1.0
Change log ChangeLog.md
Dependencies base (<5), filepath, simple-cmd, simple-cmd-args [details]
License BSD-3-Clause
Copyright 2018,2021 Jens Petersen
Author Jens Petersen <petersen@redhat.com>
Maintainer Jens Petersen <petersen@redhat.com>
Category Utility
Home page https://github.com/juhp/lsfrom
Bug tracker https://github.com/juhp/lsfrom/issues
Source repo head: git clone https://github.com/juhp/lsfrom.git
Uploaded by JensPetersen at 2021-02-06T10:55:03Z
Distributions Fedora:0.1.1.1
Executables lsfrom
Downloads 241 total (13 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2021-02-06 [all 2 reports]

Readme for lsfrom-0.1

[back to package description]

lsfrom

lsfrom lists files in the current directory that start with a particular sequence of characters and those after it with respect to collation.

$ ls
A a B C
$ lsfrom a/
B
C
$ lsfrom /sy
/sys
/sysroot
/tmp
/usr
/var

This may be useful for continuing a script on the files in a dir after a failure, etc.