-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
423 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
pog.pog { | ||
# Required | ||
name = "tool-name"; # Name of your CLI tool | ||
script = '' | ||
echo "hello, world!" | ||
''; # Bash script or function that uses helpers | ||
|
||
# Optional | ||
version = "0.0.0"; # Version of your tool | ||
description = "..."; # Tool description | ||
flags = [ ]; # List of flag definitions | ||
arguments = [ ]; # Positional arguments | ||
argumentCompletion = "files"; # Completion for positional args | ||
runtimeInputs = [ ]; # Runtime dependencies | ||
bashBible = false; # Include bash-bible helpers | ||
beforeExit = ""; # Code to run before exit | ||
strict = false; # Enable strict bash mode | ||
flagPadding = 20; # Padding for help text | ||
showDefaultFlags = false; # Show built-in flags in usage | ||
shortDefaultFlags = true; # Enable short versions of default flags} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.