Code:
0000000 \f \n \f \n \f \n \f \n \f \n \f \n \f \n \f \n
0000020 \f \n \f \n
0000024
I got the following with
Code:
od -c
The below code isn't removing it, or may be leaving out the newline characters
Code:
tr -d "\f"
The below sed statement is deleting the complete data
Code:
sed 's[ \t]*\f[ \t]*//g' | sed '/^$/d'
Last edited by tostay2003; 01-06-2009 at 12:13 PM..
|