| From: Warren Michelsen | Date Sent: 2009-07-28 11:46:21 |
| Subject: Filter/Script to uudecode? | To: BBEdit Talk |
| Navigation: First Message | Previous Message | Next Message | Last Message | |
Is there a way (script or filter) to take selected text in the front-most BBEdit document, pass it to uudecode and paste the result into the document in place of the encoded text?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "BBEdit Talk" group.
To post to this group, send email to bbedit@[Protected]
To unsubscribe from this group, send email to
bbedit+unsubscribe@[Protected]
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or confirmed) problem with the software, please email to "support@[Protected]" rather than posting to the group.
-~----------~----~----~----~------~----~------~--~---
| From: Seth Dillingham | Date Sent: 2009-07-28 12:23:19 |
| Subject: Re: Filter/Script to uudecode? | To: BBEdit Talk |
| Navigation: First Message | Previous Message | Next Message | Last Message | |
On 7/28/2009, Warren Michelsen said:
>Is there a way (script or filter) to take selected text in the
>front-most BBEdit document, pass it to uudecode and paste the
>result into the document in place of the encoded text?
1. Create a new document, paste in the following lines:
#!/bin/sh
uudecode -p "$1"
2. Save it at
~/Library/Application Support/BBEdit/Unix Support/Unix Filters/uudecode.sh
(where "~" is your home directory)
3. Open the uuencode-ed file you want to decode.
4. In the #! menu (called "shebang" 'round here), select Unix
Filters -> uudecode.sh
The decoded version should open in a new document. Just copy and
paste it in.
Seth
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "BBEdit Talk" group.
To post to this group, send email to bbedit@[Protected]
To unsubscribe from this group, send email to
bbedit+unsubscribe@[Protected]
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or confirmed) problem with the software, please email to "support@[Protected]" rather than posting to the group.
-~----------~----~----~----~------~----~------~--~---