Last active
April 22, 2020 19:28
-
-
Save pille1842/5a09544e70be7f643cd320cebcd35eff to your computer and use it in GitHub Desktop.
Y tho
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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