scripts/functions_korn/rman

12 lines
202 B
Plaintext

# Consultar manuales de programa remotos
rman() {
if command -v lynx >/dev/null; then
lynx https://man.voidlinux.org/x86_64/"$@"
return 0
else
print "Instale el programa lynx"
return 1
fi
}