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 Version: 2.0 Architecture: m68k-amigaos Feature-packed clipboard manipulator which makes use of stdin/out redirections intelligently and is 100% Pure so it can be made resident. New in this version: · Rewrote abit and removed the need for linking with cres.o. · Added SHIFT keyword. · Fixed STRING keyword not working when there was no stdin. 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. $ foobar | clip SHIFT | barfoo Output of foobar gets written to clipboard and old contents is passed to barfoo. - CISC