Didn't mean to obfuscate that, it's just a one-liner.
Here's how it works. Perl setup:
perl -Mautodie -we '
die "not apple mac" unless ${^O} eq "darwin";
Open a pipe to the applescript compiler and print:
open $f, "|-", "osacompile -o CPAN.app"; print $f qq~
Display applescript dialog to get user input:
set CPAN to text returned of (display dialog "Search CPAN for" with title "Perl CPAN Search" default answer "")\n
Exit on empty form:
if CPAN is equal to "" then return\n
Open website with user input:
do shell script("open \\"https://metacpan.org/search?q=" & CPAN & "\\"")
Back to perl, close the print and pipe, open the app:
~;
close $f;
system("open CPAN.app")'
Flowchart:
perl -> applescript -> perl -> app -> CPAN!
The programmer is fighting against the two most destructive forces
in the universe: entropy and human stupidity.—Damian Conway
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.