stockholm/lass/5pkgs/acronym/default.nix
2016-03-15 14:08:29 +01:00

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"
''