14 lines
273 B
Nix
14 lines
273 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.writeScriptBin "acronym" ''
|
||
|
#! ${pkgs.bash}/bin/bash
|
||
|
|
||
|
acro=$1
|
||
|
|
||
|
curl -s http://www.acronymfinder.com/$acro.html \
|
||
|
| grep 'class="result-list__body__rank"' \
|
||
|
| sed 's/.*title="\([^"]*\)".*/\1/' \
|
||
|
| sed 's/^.* - //' \
|
||
|
| sed "s/'/'/g"
|
||
|
''
|