#!/usr/bin/perl -w use String::Escape qw( printable ) ; open(FILE," text.txt"); while(){ print printable($_); } close(FILE);