Piper is a Service that provides applications with
the ability to pass the current selection to a user
defined shell script. It appears in an applications
Services menu and has a submenu that lets the user
pick the script they want to run. The resulting output is either returned to the calling app or placed on the selection pasteboard.
Selection Types
Two types of selection may be passed to Piper: ascii
data or a filename. Piper runs the script in different ways according to the selection type. If the selection type is ascii data (eg if you make a selection in Edit), the selected data is piped to the script as standard input. If the selection is a file name (eg the current file in workspace manager), Piper will execute the script with the selected file name passed as a parameter.
Output
If the selection was a filename, the output from the script is placed by Piper on the selection pasteboard. From there it may be pasted into a document in the normal way.
If the selection was ascii data, the default action is also to place the output of the script on the pasteboard. However, if the script options file (see below) specifies a return type and if the calling application supports returned ascii data, the script output will replace the users selection.
Piper also has a Window that may be used to display the output from the script. The output in this window may be cut and pasted in the usual way. To display this window, select the Window... menu item. A preferences option specifies whether or not the window is cleared before running a script.
Parameter
Piper can pass an optional parameter to the script. If you select the Parameter... menu item a text field panel is displayed in which the user can enter a parameter. This is passed as the first parameter to the script. If the selection is a file name, that will then become the second parameter passed. A preferences option specifies whether or not this parameter field is cleared after running a script.
Loading Scripts
Piper looks for scripts in the users ~/Library/Piper directory. Each script must reside in a directory of its own and the name of the directory appears in Pipers submenu. The actual script (which must be executable) must be called script. If a new script is added, Piper must be informed. Do this by selecting the Reload Scripts menu item. This is necessary, because the list of scripts is stored in a section of Pipers executable which is examined by the workspace manager at login time.
Note: for this reason, Piper cannot be shared! It must reside in the users ~/Apps directory.
Options
A file called options may also be present in the script directory. This may have two possible lines:
Return Type: NXAsciiPboardType
means that the script wants to return data to replace the users selection, rather than the default of placing on the pasteboard.
Key Equivalent: K
means that K (for example) is the key equivalent for this script.
Examples
1) awk '{print">"$0}'
This script will just prepend ">" to every line in the selection. Coupled with an options file specifying a return type, this could be used to quote sections of text in Mail.
2) tar tvf $1
Simply lists the given tar file. Output may be viewed in Pipers window.
Author
This program was written by Dave Griffiths of Primitive Software Ltd. It's free. Hope you like it.
Please send bug reports and suggestions to:
prim!dave@germany.eu.net
Acknowledgement
Last, but not least, it was Anthony Berno's idea! From a suggestion he made on comp.sys.next. Here is his original news article: