sub user_input {
        local($n, $text)=@_;
        $file = substr($text, index($text, ' ')+1);
        if(-e $file){
                &http'tell(`cat $file`, $n);
        }
        else{
                &http'tell("That file does not exist\n", $n);
        }
}
