sub bin_cat { my (file) = @_; defined file || die; my y = open (file, "r") while (my x = read(y)) { print (x); }}