golang-github-bmatcuk-doublestar 1.1.5-1 source package in Ubuntu

Changelog

golang-github-bmatcuk-doublestar (1.1.5-1) unstable; urgency=medium

  * Initial release

 -- Thorsten Alteholz <email address hidden>  Tue, 05 Nov 2019 20:23:00 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-bmatcuk-doublestar_1.1.5-1.dsc 2.4 KiB 8aea34a0d4d25393e68b2e51fb231d804580e39d4e1728cbcdbc17f7e264bde4
golang-github-bmatcuk-doublestar_1.1.5.orig.tar.xz 8.0 KiB ffa6401a5e218b9519191ab7aad09d02ac51f07053d4baab0178b06738e58711
golang-github-bmatcuk-doublestar_1.1.5-1.debian.tar.xz 2.2 KiB 51d309da647f325901a14dd5b192a47dba74a34b0004bf03ad0e65fa64fa9b27

No changes file available.

Binary packages built by this source

golang-github-bmatcuk-doublestar-dev: support for double star matches in golang's path.Match and filepath.Glob

 This package contains a Golang implementation of path pattern matching
 and globbing with support for "doublestar" (aka globstar: **) patterns.
 .
 doublestar patterns match files and directories recursively. For example,
 if you had the following directory structure:
 .
 grandparent `-- parent
     |-- child1 `-- child2
 .
 You could find the children with patterns such as: **/child*,
 grandparent/**/child?, **/parent/*, or even just ** by itself (which
 will return all files and directories recursively).
 .
 Bash's globstar is doublestar's inspiration and, as such, works similarly.
 Note that the doublestar must appear as a path component by itself. A
 pattern such as /path** is invalid and will be treated the same as
 /path*, but /path*/** should achieve the desired result. Additionally,
 /path/** will match all directories and files under the path directory,
 but /path/**/ will only match directories.