Skip to content

Commit

Permalink
bump version to 0.3, update the README
Browse files Browse the repository at this point in the history
  • Loading branch information
avih committed Feb 25, 2023
1 parent 0d5859a commit bf5d71f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ Clipboard command line tool for Windows, with Unicode support.
- Compiles/runs on mono too.

```
Usage: uclip -c STRING Copy (Unicode) STRING to the clipboard
uclip -i Copy standard input as UTF-8 to the clipboard
Usage: uclip [-i] Copy standard input as UTF-8 to the clipboard
uclip -I Copy standard input as UTF-16LE to the clipboard
uclip -c [TEXT] Copy TEXT to the clipboard (clear if no TEXT)
uclip -o Write clipboard text to standard output as UTF-8
uclip -O Write clipboard text to standard output as UTF-16LE
uclip -oe | -Oe Like -o/-O but error if text is empty or unavailable
uclip -h Print this help and exit
version 0.1, https://github.com/avih/uclip
Version 0.3, https://github.com/avih/uclip
```


Expand Down
2 changes: 1 addition & 1 deletion uclip.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static void Main(string[] args) {
" uclip -O Write clipboard text to standard output as UTF-16LE\n"+
" uclip -oe | -Oe Like -o/-O but error if text is empty or unavailable\n"+
" uclip -h Print this help and exit\n"+
"Version 0.2+, https://github.com/avih/uclip\n");
"Version 0.3, https://github.com/avih/uclip\n");

} else if (o == "-c" && alen <= 2) {
to_clipboard(alen == 1 ? "" : args[1]);
Expand Down

0 comments on commit bf5d71f

Please sign in to comment.