mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-02-13 15:34:59 -05:00
Allow patterns to be loaded directly from files using explicit path prefixes (~/, ./, /, or \). This enables easier testing and iteration of patterns without requiring installation into the fabric config structure. - Supports relative paths (./pattern.txt, ../pattern.txt) - Supports home directory expansion (~/patterns/test.txt) - Supports absolute paths - Maintains backwards compatibility with named patterns - Requires explicit path markers to distinguish from pattern names Example usage: fabric --pattern ./draft-pattern.txt fabric --pattern ~/patterns/my-pattern.txt fabric --pattern ../../shared-patterns/test.txt