Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
List Files¶
There are 2 ways to list files using ripgrep. The first way is file name (globbing pattern) based and the second way is file content (regex pattern) based.
Useful Tools for Python Developing
Great Command Line Tools Developed in Rust
Hands on the Cobra Module in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Comments¶
- Cobra support groups of flags which appear together or are mutually exclusive. For detailed discussions, please refer to Flag Groups .
Quickly Start a Cobra-based project¶
Below is an example of creating a cobra-based project "icon".
Parse Command Line Arguments Using Flag in Go
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
It is suggested that you use the Golang module spf13/cobra (instead of the standard Golang library flag) for parsing command-line arguments.