home *** CD-ROM | disk | FTP | other *** search
- Short: Manipulate the clipboard from shell (w/src)
- Author: cisc@c2i.net (Sigbjørn Skjæret)
- Uploader: cisc@c2i.net (Sigbjørn Skjæret)
- Type: util/cli
-
- Feature-packed clipboard manipulator which makes use of stdin/out
- redirections intelligently and is 100% Pure so it can be made resident.
-
-
- Examples:
-
- $ clip
- The contents of clipboard unit 0 will get written to stdout.
-
- $ clip foobar
- The contents of the clipboard unit 0 will be written to the file foobar.
-
- $ clip foobar STORE
- The contents of the file foobar will get written to clipboard unit 0.
-
- $ clip UNIT=3 STRING="He never saw Molly again"
- The string "He never saw Molly again" will be written to clipboard unit 3.
-
- $ foobar | clip
- Output of the program foobar will get written to clipboard unit 0
-
- $ clip | foobar
- The clipboard contents of unit 0 will be supplied to the program foobar.
-
- $ foobar | clip | barfoo
- Output of foobar gets written to clipboard and is passed through to barfoo.
-
-
- - CISC
-