Improved the convert module a bit.

This commit is contained in:
Storm Dragon 2020-08-14 17:08:35 -04:00
parent 683330d7d1
commit faed0b044c
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ shift
if [ -z "$units" ]; then
msg "$chan" "I do not have access to units."
else
msg "$chan" "$($units -v ${*#* } | head -n1)"
msg "$chan" "$($units -v ${*#* } | head -n1 | tr -d '[:space:]')"
fi