#!/usr/bin/bash

_ncrsh_server() {
	local port=${1//[^0-9]/}

	ncat -l -p ${port:-23}  -e  "/bin/bash"  --keep-open  &
}

_ncrsh_server "$@"
