2016-03-15 14:08:29 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
pkgs.writeScriptBin "acronym" ''
|
2016-04-13 16:48:32 +02:00
|
|
|
|
2016-03-15 14:08:29 +01:00
|
|
|
#! ${pkgs.bash}/bin/bash
|
|
|
|
|
|
|
|
acro=$1
|
|
|
|
|
|
|
|
curl -s http://www.acronymfinder.com/$acro.html \
|
2016-04-13 16:48:32 +02:00
|
|
|
| grep 'class="result-list__body__rank"' \
|
|
|
|
| sed '
|
|
|
|
s/.*title="\([^"]*\)".*/\1/
|
|
|
|
s/^.* - //
|
|
|
|
s/'/'\'''/g
|
|
|
|
'
|
2016-03-15 14:08:29 +01:00
|
|
|
''
|