summaryrefslogtreecommitdiffstats
path: root/lass/5pkgs/acronym/default.nix
blob: 8380b220a73d4b268103e90ac4b9f0040017f168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }:

pkgs.writeScriptBin "acronym" ''

  #! ${pkgs.bash}/bin/bash

  acro=$1

  curl -L -s http://www.acronymfinder.com/$acro.html \
    | grep 'class="result-list__body__rank"' \
    | sed '
      s/.*title="\([^"]*\)".*/\1/
      s/^.* - //
      s/'/'\'''/g
    '
''