Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #6

Merged
merged 13 commits into from
May 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,13 @@ charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,21 @@ _testmain.go
*.test
*.prof

*.linux
color
console
counter
date-math
db
db2
filter
iif
isodate
md2html
params
roll
rpn
scale
smatrix
striper
thru
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ A collection of command line tools written in Go
* date-math - find difference between two dates
* db - simple name/value storage
* db2 - complex data storage with forms ; in progress
* filter - filter out matching lines from regexp
* iif - inline if for scripting
* isodate - current date in iso format because date stinks
* md2html - template based HTML generator from markdown source
* params - a tool for processing url parameters and parts
* roll - rotate files like logs ; in progress
* rpn - an RPN calculator
* scale - console line chart scroler ; experimental
Expand All @@ -23,7 +25,7 @@ Inline If
returns a value if the left and right operands meet a condition

Usage:
iff -left 10 -test '==' -right 10
iff -left 10 -test '==' -right 10

### rpn ###
A Reverse Polish Notation calculator
Expand Down
Loading
Loading