home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 3 / CD_Magazyn_EXEC_nr_3.iso / Recent / util / cli / clip.readme < prev    next >
Encoding:
Text File  |  2000-07-31  |  978 b   |  35 lines

  1. Short:    Manipulate the clipboard from shell (w/src)
  2. Author:   cisc@c2i.net (Sigbjørn Skjæret)
  3. Uploader: cisc@c2i.net (Sigbjørn Skjæret)
  4. Type:     util/cli
  5.  
  6. Feature-packed clipboard manipulator which makes use of stdin/out
  7. redirections intelligently and is 100% Pure so it can be made resident.
  8.  
  9.  
  10. Examples:
  11.  
  12. $ clip
  13.   The contents of clipboard unit 0 will get written to stdout.
  14.  
  15. $ clip foobar
  16.   The contents of the clipboard unit 0 will be written to the file foobar.
  17.  
  18. $ clip foobar STORE
  19.   The contents of the file foobar will get written to clipboard unit 0.
  20.  
  21. $ clip UNIT=3 STRING="He never saw Molly again"
  22.   The string "He never saw Molly again" will be written to clipboard unit 3.
  23.  
  24. $ foobar | clip
  25.   Output of the program foobar will get written to clipboard unit 0
  26.  
  27. $ clip | foobar
  28.   The clipboard contents of unit 0 will be supplied to the program foobar.
  29.  
  30. $ foobar | clip | barfoo
  31.   Output of foobar gets written to clipboard and is passed through to barfoo.
  32.  
  33.  
  34. - CISC
  35.