Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
SilenZcience committed Jan 27, 2023
1 parent 3e74ae6 commit 0f36f52
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ python3 -m cat_win --help
| --b64e, --b64e | encode the input to base64 |
| --b64d, --b64d | decode the input from base64 |
| | |
| enc=X | set file enconding to X |
| enc=X | set file enconding to X (default is utf-8) |
| find=X | find substring X in the given files |
| match=X | find pattern X in the given files |
| trunc=X:Y | truncate file to lines X and Y (python-like) |
Expand Down
Binary file modified bin/cat.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion cat_win/cat.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _showHelp() -> None:
for x in ALL_ARGS:
helpMessage += f'\t{f"{x.shortForm}, {x.longForm}": <25}{x.help}\n'
helpMessage += '\n'
helpMessage += f'\t{"enc=X, enc:X" : <25}set file encoding to X\n'
helpMessage += f'\t{"enc=X, enc:X" : <25}set file encoding to X (default is utf-8)\n'
helpMessage += f'\t{"find=X, find:X" : <25}find substring X in the given files\n'
helpMessage += f'\t{"match=X, match:X": <25}find pattern X in the given files\n'
helpMessage += f'\t{"trunc=X:Y, trunc:X:Y": <25}truncate file to lines x and y (python-like)\n'
Expand Down

0 comments on commit 0f36f52

Please sign in to comment.