mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-13 22:02:34 +00:00
13 lines
282 B
Bash
Executable File
13 lines
282 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
function dp() {
|
|
[ -z "$1" ] && echo "Must supply temperature" && return 1
|
|
[ -z "$2" ] && echo "Must supply relative humidity" && return 1
|
|
|
|
local temperature=$1
|
|
local humidity=$2
|
|
|
|
psychrometrics dew-point --dry-bulb "$temperature" --relative-humidity "$humidity"
|
|
|
|
}
|