Skip to content

Instantly share code, notes, and snippets.

@pille1842
Last active April 22, 2020 19:28
Show Gist options
  • Select an option

  • Save pille1842/5a09544e70be7f643cd320cebcd35eff to your computer and use it in GitHub Desktop.

Select an option

Save pille1842/5a09544e70be7f643cd320cebcd35eff to your computer and use it in GitHub Desktop.
Y tho
#!/usr/bin/zsh
units '1 hectare' 'm^2' | head -n1 | cut -d'*' -f2 | sed -e 's/ //g' -e 's/^/sqrt(/' -e 's/$/\)/' | bc -- | sed -e 's/$/ \^ 2/' | bc -- | sed -e 's/$/ m\^2/' | xargs -0 -I{} units -1 {} 'hectare' | cut -d'*' -f2 | sed 's/ //g' | echo $? >&2 1>/dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment